RedrawWindow method

int RedrawWindow(
  1. Pointer<HWND__> hWnd,
  2. Pointer<RECT> lprcUpdate,
  3. Pointer<HRGN__> hrgnUpdate,
  4. int flags,
)

Implementation

int RedrawWindow(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<RECT> lprcUpdate,
  ffi.Pointer<HRGN__> hrgnUpdate,
  int flags,
) {
  return _RedrawWindow(
    hWnd,
    lprcUpdate,
    hrgnUpdate,
    flags,
  );
}