NtUserGetProcessWindowStation - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTUSER_H

/**
 * The NtUserGetProcessWindowStation routine retrieves the window station handle associated with the current process.
 *
 * \return A handle to the window station, or NULL if the operation fails.
 * \sa https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getprocesswindowstation
 */
_Kernel_entry_
NTSYSCALLAPI
HWINSTA
NTAPI
NtUserGetProcessWindowStation(
    VOID
    );

#endif

View code on GitHub

NtDoc

No description available.