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