GetHandleInformation function kernel32
Retrieves certain properties of an object handle.
BOOL GetHandleInformation(
HANDLE hObject,
LPDWORD lpdwFlags
);
Implementation
int GetHandleInformation(int hObject, Pointer<Uint32> lpdwFlags) =>
_GetHandleInformation(hObject, lpdwFlags);