RANGE

The RANGE structure is used to represent a valid range for a number.

typedef struct range {
    DWORD MinValue;
    DWORD MaxValue;
} RANGE;

typedef RANGE *LPRANGE;
 

Members

MinValue
The lowest possible value for the field.
MaxValue
The highest possible value for the field.