GetWindowExtEx function gdi32

int GetWindowExtEx(
  1. int hdc,
  2. Pointer<SIZE> lpsize
)

This function retrieves the x-extent and y-extent of the window for the specified device context.

BOOL GetWindowExtEx(
  HDC    hdc,
  LPSIZE lpsize
);

Implementation

int GetWindowExtEx(int hdc, Pointer<SIZE> lpsize) =>
    _GetWindowExtEx(hdc, lpsize);