GetCursorPos function Null safety user32
Retrieves the position of the mouse cursor, in screen coordinates.
BOOL GetCursorPos(
LPPOINT lpPoint
);
Implementation
int GetCursorPos(Pointer<POINT> lpPoint) => _GetCursorPos(lpPoint);
Retrieves the position of the mouse cursor, in screen coordinates.
BOOL GetCursorPos(
LPPOINT lpPoint
);
int GetCursorPos(Pointer<POINT> lpPoint) => _GetCursorPos(lpPoint);