RectInRegion method

int RectInRegion(
  1. Pointer<HRGN__> hrgn,
  2. Pointer<LPRECT> lprect
)

Implementation

int RectInRegion(
  ffi.Pointer<HRGN__> hrgn,
  ffi.Pointer<LPRECT> lprect,
) {
  return (_RectInRegion ??= _dylib
      .lookupFunction<_c_RectInRegion, _dart_RectInRegion>('RectInRegion'))(
    hrgn,
    lprect,
  );
}