PolyPolyline function gdi32

int PolyPolyline(
  1. int hdc,
  2. Pointer<POINT> apt,
  3. Pointer<Uint32> asz,
  4. int csz
)

The PolyPolyline function draws multiple series of connected line segments.

BOOL PolyPolyline(
  HDC         hdc,
  const POINT *apt,
  const DWORD *asz,
  DWORD       csz
);

Implementation

int PolyPolyline(int hdc, Pointer<POINT> apt, Pointer<Uint32> asz, int csz) =>
    _PolyPolyline(hdc, apt, asz, csz);