PolyPolyline function Null safety gdi32
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) {
final _PolyPolyline = _gdi32.lookupFunction<
Int32 Function(
IntPtr hdc, Pointer<POINT> apt, Pointer<Uint32> asz, Uint32 csz),
int Function(int hdc, Pointer<POINT> apt, Pointer<Uint32> asz,
int csz)>('PolyPolyline');
return _PolyPolyline(hdc, apt, asz, csz);
}