RANGE
The RANGE structure defines a range of valid property values.
typedef struct range {
DWORD MinValue;
DWORD MaxValue;
} RANGE,
*LPRANGE;
Members
- MinValue
Lowest possible value in a range. - MaxValue
Highest possible value in a range.
Remarks
The RANGE structure is used to specify a valid range of numbers for a protocol property. If the DataQualifier member of the PROPERTYINFO structure is set to PROP_QUAL_RANGE, the lpRange member of the PROPERTYINFO structure must provide a pointer to a RANGE structure.
Requirements
Client | Requires Windows XP, Windows 2000 Professional, or Windows NT Workstation 4.0. |
Server | Requires Windows Server 2003, Windows 2000 Server, or Windows NT Server 4.0. |
Header | Declared in Netmon.h. |