LineTo method

int LineTo(
  1. Pointer<HDC__> hdc,
  2. int x,
  3. int y
)

Implementation

int LineTo(
  ffi.Pointer<HDC__> hdc,
  int x,
  int y,
) {
  return (_LineTo ??=
      _dylib.lookupFunction<_c_LineTo, _dart_LineTo>('LineTo'))(
    hdc,
    x,
    y,
  );
}