Polyline function gdi32

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

The Polyline function draws a series of line segments by connecting the points in the specified array.

BOOL Polyline(
  HDC         hdc,
  const POINT *apt,
  int         cpt
);

Implementation

int Polyline(int hdc, Pointer<POINT> apt, int cpt) => _Polyline(hdc, apt, cpt);