PolylineTo function gdi32

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

The PolylineTo function draws one or more straight lines.

BOOL PolylineTo(
  HDC         hdc,
  const POINT *apt,
  DWORD         cpt
);

Implementation

int PolylineTo(int hdc, Pointer<POINT> apt, int cpt) =>
    _PolylineTo(hdc, apt, cpt);