GetDIBColorTable method

int GetDIBColorTable(
  1. Pointer<HDC__> hdc,
  2. int iStart,
  3. int cEntries,
  4. Pointer<RGBQUAD> prgbq,
)

Implementation

int GetDIBColorTable(
  ffi.Pointer<HDC__> hdc,
  int iStart,
  int cEntries,
  ffi.Pointer<RGBQUAD> prgbq,
) {
  return (_GetDIBColorTable ??=
      _dylib.lookupFunction<_c_GetDIBColorTable, _dart_GetDIBColorTable>(
          'GetDIBColorTable'))(
    hdc,
    iStart,
    cEntries,
    prgbq,
  );
}