Arc function gdi32
The Arc function draws an elliptical arc.
BOOL Arc(
HDC hdc,
int x1,
int y1,
int x2,
int y2,
int x3,
int y3,
int x4,
int y4
);
Implementation
int Arc(int hdc, int x1, int y1, int x2, int y2, int x3, int y3, int x4,
int y4) =>
_Arc(hdc, x1, y1, x2, y2, x3, y3, x4, y4);