Group: Coordinate Space and Transformation - Library: gdi32
BOOL ClientToScreen(
HWND hWnd, // handle to window
LPPOINT lpPoint // screen coordinates
); DECLARE INTEGER ClientToScreen IN user32;
INTEGER hWindow,;
STRING @lpPoint hWnd [in] Handle to the window whose client area is used for the conversion.
lpPoint [in/out] Pointer to a POINT structure that contains the client coordinates to be converted. The new screen coordinates are copied into this structure if the function succeeds.
If the function succeeds, the return value is nonzero.
See also: ScreenToClient.
Home