The RANGE structure is used to represent a valid range for a number.
typedef struct range { DWORD MinValue; DWORD MaxValue; } RANGE; typedef RANGE *LPRANGE;