GetNearestPaletteIndex method

int GetNearestPaletteIndex(
  1. Pointer<HPALETTE__> h,
  2. int color
)

Implementation

int GetNearestPaletteIndex(
  ffi.Pointer<HPALETTE__> h,
  int color,
) {
  return (_GetNearestPaletteIndex ??= _dylib.lookupFunction<
      _c_GetNearestPaletteIndex,
      _dart_GetNearestPaletteIndex>('GetNearestPaletteIndex'))(
    h,
    color,
  );
}