Polyline method

int Polyline(
  1. Pointer<HDC__> hdc,
  2. Pointer<POINT> apt,
  3. int cpt
)

Implementation

int Polyline(
  ffi.Pointer<HDC__> hdc,
  ffi.Pointer<POINT> apt,
  int cpt,
) {
  return _Polyline(
    hdc,
    apt,
    cpt,
  );
}