PolyBezier function gdi32

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

The PolyBezier function draws one or more Bézier curves.

BOOL PolyBezier(
  HDC         hdc,
  const POINT *apt,
  DWORD       cpt
);

Implementation

int PolyBezier(int hdc, Pointer<POINT> apt, int cpt) =>
    _PolyBezier(hdc, apt, cpt);