The SAndRestriction structure describes an AND restriction, which is used to join a group of restrictions using a logical AND operation.
Header file: | MAPIDEFS.H |
typedef struct _SAndRestriction
{
ULONG cRes;
LPSRestriction lpRes;
} SAndRestriction;
The result of the SAndRestriction is TRUE if all of its child restrictions evaluate to TRUE, and FALSE if any child restriction evaluates to FALSE.
For a description of types of restrictions, how to build them, and sample code, see About Restrictions.
Restriction Structures, SRestriction