RedrawWindow function user32
The RedrawWindow function updates the specified rectangle or region in a window's client area.
BOOL RedrawWindow(
HWND hWnd,
const RECT *lprcUpdate,
HRGN hrgnUpdate,
UINT flags
);
Implementation
int RedrawWindow(
int hWnd,
Pointer<RECT> lprcUpdate,
int hrgnUpdate,
int flags,
) => _RedrawWindow(hWnd, lprcUpdate, hrgnUpdate, flags);