InflateRect function user32

bool InflateRect(
  1. Pointer<RECT> lprc,
  2. int dx,
  3. int dy
)

Increases or decreases the width and height of the specified rectangle.

To learn more, see learn.microsoft.com/windows/win32/api/winuser/nf-winuser-inflaterect.

Implementation

@pragma('vm:prefer-inline')
bool InflateRect(Pointer<RECT> lprc, int dx, int dy) =>
    _InflateRect(lprc, dx, dy) != FALSE;