GetPath function gdi32
The GetPath function retrieves the coordinates defining the endpoints of lines and the control points of curves found in the path that is selected into the specified device context.
int GetPath(
HDC hdc,
LPPOINT apt,
LPBYTE aj,
int cpt
);
Implementation
int GetPath(int hdc, Pointer<POINT> apt, Pointer<Uint8> aj, int cpt) =>
_GetPath(hdc, apt, aj, cpt);