SetDCBrushColor method

int SetDCBrushColor(
  1. Pointer<HDC__> hdc,
  2. int color
)

Implementation

int SetDCBrushColor(
  ffi.Pointer<HDC__> hdc,
  int color,
) {
  return (_SetDCBrushColor ??=
      _dylib.lookupFunction<_c_SetDCBrushColor, _dart_SetDCBrushColor>(
          'SetDCBrushColor'))(
    hdc,
    color,
  );
}