FillRect method

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

Implementation

int FillRect(
  ffi.Pointer<HDC__> hDC,
  ffi.Pointer<RECT> lprc,
  ffi.Pointer<HBRUSH__> hbr,
) {
  return _FillRect(
    hDC,
    lprc,
    hbr,
  );
}