AngleArc method
Implementation
int AngleArc(
ffi.Pointer<HDC__> hdc,
int x,
int y,
int r,
double StartAngle,
double SweepAngle,
) {
return (_AngleArc ??=
_dylib.lookupFunction<_c_AngleArc, _dart_AngleArc>('AngleArc'))(
hdc,
x,
y,
r,
StartAngle,
SweepAngle,
);
}