GetPath function gdi32

int GetPath(
  1. int hdc,
  2. Pointer<POINT> apt,
  3. Pointer<Uint8> aj,
  4. int cpt,
)

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);