Polyline function gdi32
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);