SetWindowRgn method
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,
);
}