PolyDraw function Null safety gdi32
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) {
final _PolyDraw = _gdi32.lookupFunction<
Int32 Function(
IntPtr hdc, Pointer<POINT> apt, Pointer<Uint8> aj, Int32 cpt),
int Function(
int hdc, Pointer<POINT> apt, Pointer<Uint8> aj, int cpt)>('PolyDraw');
return _PolyDraw(hdc, apt, aj, cpt);
}