CreateRectRgnIndirect method

Pointer<HRGN__> CreateRectRgnIndirect(
  1. Pointer<LPRECT> lprect
)

Implementation

ffi.Pointer<HRGN__> CreateRectRgnIndirect(
  ffi.Pointer<LPRECT> lprect,
) {
  return (_CreateRectRgnIndirect ??= _dylib.lookupFunction<
      _c_CreateRectRgnIndirect,
      _dart_CreateRectRgnIndirect>('CreateRectRgnIndirect'))(
    lprect,
  );
}