PolyDraw function gdi32

int PolyDraw(
  1. int hdc,
  2. Pointer<POINT> apt,
  3. Pointer<Uint8> aj,
  4. int cpt
)

The PolyDraw function draws a set of line segments and Bézier curves.

BOOL PolyDraw(
  HDC         hdc,
  const POINT *apt,
  const BYTE  *aj,
  int         cpt
);

Implementation

int PolyDraw(int hdc, Pointer<POINT> apt, Pointer<Uint8> aj, int cpt) =>
    _PolyDraw(hdc, apt, aj, cpt);