EqualRect (Windows Embedded CE 6.0)

1/6/2010

This function determines whether the two specified rectangles are equal by comparing the coordinates of their upper left and lower right corners.

Syntax

BOOL EqualRect(
  const RECT* lprc1, 
  const RECT* lprc2
);

Parameters

  • lprc1
    Long pointer to a RECT structure that contains the logical coordinates of the first rectangle.
  • lprc2
    Long pointer to a RECT structure that contains the logical coordinates of the second rectangle.

Return Value

Nonzero indicates that the two rectangles are identical.

Zero indicates that the two rectangles are not identical.

To get extended error information, call GetLastError.

Requirements

Header winuser.h
Library Rectapi.lib
Windows Embedded CE Windows CE 1.0 and later

See Also

Reference

GDI Functions
IsRectEmpty
PtInRect
RECT