CreatePolyPolygonRgn method
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,
);
}