LineTo function gdi32

int LineTo(
  1. int hdc,
  2. int x,
  3. int y
)

The LineTo function draws a line from the current position up to, but not including, the specified point.

BOOL LineTo(
  HDC hdc,
  int x,
  int y
);

Implementation

int LineTo(int hdc, int x, int y) => _LineTo(hdc, x, y);