Polygon method

int Polygon(
  1. Pointer<HDC__> hdc,
  2. Pointer<LPPOINT> apt,
  3. int cpt
)

Implementation

int Polygon(
  ffi.Pointer<HDC__> hdc,
  ffi.Pointer<LPPOINT> apt,
  int cpt,
) {
  return (_Polygon ??=
      _dylib.lookupFunction<_c_Polygon, _dart_Polygon>('Polygon'))(
    hdc,
    apt,
    cpt,
  );
}