SetDeviceGammaRamp method

int SetDeviceGammaRamp(
  1. Pointer<HDC__> hdc,
  2. Pointer<Void> lpRamp
)

Implementation

int SetDeviceGammaRamp(
  ffi.Pointer<HDC__> hdc,
  ffi.Pointer<ffi.Void> lpRamp,
) {
  return (_SetDeviceGammaRamp ??=
      _dylib.lookupFunction<_c_SetDeviceGammaRamp, _dart_SetDeviceGammaRamp>(
          'SetDeviceGammaRamp'))(
    hdc,
    lpRamp,
  );
}