SetPixel method

int SetPixel(
  1. Pointer<HDC__> hdc,
  2. int x,
  3. int y,
  4. int color,
)

Implementation

int SetPixel(
  ffi.Pointer<HDC__> hdc,
  int x,
  int y,
  int color,
) {
  return _SetPixel(
    hdc,
    x,
    y,
    color,
  );
}