SetWindowRgn method

int SetWindowRgn(
  1. Pointer<HWND__> hWnd,
  2. Pointer<HRGN__> hRgn,
  3. int bRedraw
)

Implementation

int SetWindowRgn(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<HRGN__> hRgn,
  int bRedraw,
) {
  return _SetWindowRgn(
    hWnd,
    hRgn,
    bRedraw,
  );
}