InflateRect function user32
The InflateRect function increases or decreases the width and height of the specified rectangle. The InflateRect function adds -dx units to the left end and dx to the right end of the rectangle and -dy units to the top and dy to the bottom. The dx and dy parameters are signed values; positive values increase the width and height, and negative values decrease them.
BOOL InflateRect(
LPRECT lprc,
int dx,
int dy
);
Implementation
int InflateRect(Pointer<RECT> lprc, int dx, int dy) =>
_InflateRect(lprc, dx, dy);