PolyBezier method

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

Implementation

int PolyBezier(
  ffi.Pointer<HDC__> hdc,
  ffi.Pointer<POINT> apt,
  int cpt,
) {
  return _PolyBezier(
    hdc,
    apt,
    cpt,
  );
}