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 ??= _dylib
      .lookupFunction<_c_SetWindowRgn, _dart_SetWindowRgn>('SetWindowRgn'))(
    hWnd,
    hRgn,
    bRedraw,
  );
}