SetPixelV method

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

Implementation

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