The ANDOR type represents a control token that connects two expression tokens, two subclauses, or a combination of an expression and a subclause. The ANDOR type defines the relationship between two adjacent expression tokens or subclauses.
typedef enum {
OP_AND = 0x03,
OP_OR = 0x02
} ANDOR;
The ANDOR type is used by the SmsAddToken function.
MICROSOFT|PROCESSOR|1.0:Processor Name is like '%386%'
AND
MICROSOFT|X86_PC_MEMORY|1.0:Extended Memory (KByte) is greater than '4000'
AND
MICROSOFT|SOFTWARE|1.0:Name is like '%Excel%'
This filter returns a list of computers that satisfied all three expressions.
MICROSOFT|PROCESSOR|1.0:Processor Name is like '%386%'
OR
MICROSOFT|X86_PC_MEMORY|1.0:Extended Memory (KByte) is greater than '4000'
OR
MICROSOFT|SOFTWARE|1.0:Software Name is like '%Excel%'
This filter returns a list of all computers that satisfied any one (or any combination) of the three expressions.