CreatePolyPolygonRgn method

Pointer<HRGN__> CreatePolyPolygonRgn(
  1. Pointer<LPPOINT> pptl,
  2. Pointer<Int32> pc,
  3. int cPoly,
  4. int iMode,
)

Implementation

ffi.Pointer<HRGN__> CreatePolyPolygonRgn(
  ffi.Pointer<LPPOINT> pptl,
  ffi.Pointer<ffi.Int32> pc,
  int cPoly,
  int iMode,
) {
  return (_CreatePolyPolygonRgn ??= _dylib.lookupFunction<
      _c_CreatePolyPolygonRgn,
      _dart_CreatePolyPolygonRgn>('CreatePolyPolygonRgn'))(
    pptl,
    pc,
    cPoly,
    iMode,
  );
}