IsRectEmpty function user32

int IsRectEmpty(
  1. Pointer<RECT> lprc
)

The IsRectEmpty function determines whether the specified rectangle is empty. An empty rectangle is one that has no area; that is, the coordinate of the right side is less than or equal to the coordinate of the left side, or the coordinate of the bottom side is less than or equal to the coordinate of the top side.

BOOL IsRectEmpty(
  const RECT *lprc
);

Implementation

int IsRectEmpty(Pointer<RECT> lprc) => _IsRectEmpty(lprc);