#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
);
View code on GitHubNo description available.