GpiEqualRegion determines whether two regions are identical. The following figure shows how to compare regions.
#define INCL_GPIREGIONS
#include <os2.h>
void fncREGN03(void){
HPS hps; /* Presentation-space handle */
HRGN hrgn1, hrgn2; /* Region handles */
LONG lEqual; /* Return value for GpiEqualRegion */
RECTL rcl1, rcl2; /* Structures for region coordinates */
rcl1.xLeft = 50; rcl1.yBottom = 100;
rcl1.xRight = 200; rcl1.yTop = 175;
hrgn1 = GpiCreateRegion(hps, 1, &rcl1); /* Creates first region */
rcl2.xLeft = 125; rcl2.yBottom = 150;
rcl2.xRight = 225; rcl2.yTop = 200;
hrgn2 = GpiCreateRegion(hps, 1, &rcl2); /* Creates second region */
lEqual = GpiEqualRegion(hps, hrgn1, hrgn2); /* Compares regions */
if (lEqual == EQRGN_EQUAL)
{
.
. /* Regions are equal. */
.
}
else if (lEqual == EQRGN_NOTEQUAL)
{
.
. /* Regions are not equal. */
.
}
else if (lEqual == EQRGN_ERROR)
{
.
. /* An error occurred. */
.
}
} /* fncREGN03 */