Group: Painting and Drawing - Library: user32
int GetWindowRgnBox(
HWND hWnd, // handle to window
LPRECT lprc // rectangle
); DECLARE INTEGER GetWindowRgnBox IN user32;
INTEGER hWindow,;
STRING @lprc hWnd [in] Handle to the window.
lprc [out] Pointer to a RECT structure that receives the rectangle dimensions, in device units relative to the upper-left corner of the window.
The return value specifies the type of the region that the function obtains.
The window region determines the area within the window where the system permits drawing. The system does not display any portion of a window that lies outside of the window region.
Home