MoveToEx function gdi32

int MoveToEx(
  1. int hdc,
  2. int x,
  3. int y,
  4. Pointer<POINT> lppt
)

The MoveToEx function updates the current position to the specified point and optionally returns the previous position.

BOOL MoveToEx(
  HDC     hdc,
  int     x,
  int     y,
  LPPOINT lppt
);

Implementation

int MoveToEx(int hdc, int x, int y, Pointer<POINT> lppt) =>
    _MoveToEx(hdc, x, y, lppt);