SetDIBits method

int SetDIBits(
  1. Pointer<HDC__> hdc,
  2. Pointer<HBITMAP__> hbm,
  3. int start,
  4. int cLines,
  5. Pointer<Void> lpBits,
  6. Pointer<BITMAPINFO> lpbmi,
  7. int ColorUse,
)

Implementation

int SetDIBits(
  ffi.Pointer<HDC__> hdc,
  ffi.Pointer<HBITMAP__> hbm,
  int start,
  int cLines,
  ffi.Pointer<ffi.Void> lpBits,
  ffi.Pointer<BITMAPINFO> lpbmi,
  int ColorUse,
) {
  return _SetDIBits(
    hdc,
    hbm,
    start,
    cLines,
    lpBits,
    lpbmi,
    ColorUse,
  );
}