GetWindowOrgEx function gdi32

int GetWindowOrgEx(
  1. int hdc,
  2. Pointer<POINT> lppoint
)

The GetWindowOrgEx function retrieves the x-coordinates and y-coordinates of the window origin for the specified device context.

BOOL GetWindowOrgEx(
  HDC     hdc,
  LPPOINT lppoint
);

Implementation

int GetWindowOrgEx(int hdc, Pointer<POINT> lppoint) =>
    _GetWindowOrgEx(hdc, lppoint);