ArcTo method
Implementation
int ArcTo(
ffi.Pointer<HDC__> hdc,
int left,
int top,
int right,
int bottom,
int xr1,
int yr1,
int xr2,
int yr2,
) {
return (_ArcTo ??= _dylib.lookupFunction<_c_ArcTo, _dart_ArcTo>('ArcTo'))(
hdc,
left,
top,
right,
bottom,
xr1,
yr1,
xr2,
yr2,
);
}