GetWindowExtEx function gdi32

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

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

To learn more, see learn.microsoft.com/windows/win32/api/wingdi/nf-wingdi-getwindowextex.

Implementation

@pragma('vm:prefer-inline')
bool GetWindowExtEx(HDC hdc, Pointer<SIZE> lpsize) =>
    _GetWindowExtEx(hdc, lpsize) != FALSE;