FillRect method

int FillRect(
  1. Pointer<HDC__> hDC,
  2. Pointer<LPRECT> lprc,
  3. Pointer<HBRUSH__> hbr
)

Implementation

int FillRect(
  ffi.Pointer<HDC__> hDC,
  ffi.Pointer<LPRECT> lprc,
  ffi.Pointer<HBRUSH__> hbr,
) {
  return (_FillRect ??=
      _dylib.lookupFunction<_c_FillRect, _dart_FillRect>('FillRect'))(
    hDC,
    lprc,
    hbr,
  );
}