ClientToScreen function user32

int ClientToScreen(
  1. int hWnd,
  2. Pointer<POINT> lpPoint
)

The ClientToScreen function converts the client-area coordinates of a specified point to screen coordinates.

BOOL ClientToScreen(
  HWND    hWnd,
  LPPOINT lpPoint
);

Implementation

int ClientToScreen(int hWnd, Pointer<POINT> lpPoint) =>
    _ClientToScreen(hWnd, lpPoint);