GetWindowRgn method

int GetWindowRgn(
  1. Pointer<HWND__> hWnd,
  2. Pointer<HRGN__> hRgn
)

Implementation

int GetWindowRgn(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<HRGN__> hRgn,
) {
  return (_GetWindowRgn ??= _dylib
      .lookupFunction<_c_GetWindowRgn, _dart_GetWindowRgn>('GetWindowRgn'))(
    hWnd,
    hRgn,
  );
}