SetDCPenColor method

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

Implementation

int SetDCPenColor(
  ffi.Pointer<HDC__> hdc,
  int color,
) {
  return (_SetDCPenColor ??=
      _dylib.lookupFunction<_c_SetDCPenColor, _dart_SetDCPenColor>(
          'SetDCPenColor'))(
    hdc,
    color,
  );
}