SetWindowExtEx function gdi32

int SetWindowExtEx(
  1. int hdc,
  2. int x,
  3. int y,
  4. Pointer<SIZE> lpsz,
)

The SetWindowExtEx function sets the horizontal and vertical extents of the window for a device context by using the specified values.

BOOL SetWindowExtEx(
  HDC    hdc,
  int    x,
  int    y,
  LPSIZE lpsz
);

Implementation

int SetWindowExtEx(int hdc, int x, int y, Pointer<SIZE> lpsz) =>
    _SetWindowExtEx(hdc, x, y, lpsz);