GetRgnBox method

int GetRgnBox(
  1. Pointer<HRGN__> hrgn,
  2. Pointer<LPRECT> lprc
)

Implementation

int GetRgnBox(
  ffi.Pointer<HRGN__> hrgn,
  ffi.Pointer<LPRECT> lprc,
) {
  return (_GetRgnBox ??=
      _dylib.lookupFunction<_c_GetRgnBox, _dart_GetRgnBox>('GetRgnBox'))(
    hrgn,
    lprc,
  );
}