CreatePolyPolygonRgn method

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

Implementation

ffi.Pointer<HRGN__> CreatePolyPolygonRgn(
  ffi.Pointer<POINT> pptl,
  ffi.Pointer<ffi.Int32> pc,
  int cPoly,
  int iMode,
) {
  return _CreatePolyPolygonRgn(
    pptl,
    pc,
    cPoly,
    iMode,
  );
}