Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
770 B

  1. #ifndef _SEQUENCERANGES_H_
  2. #define _SEQUENCERANGES_H_
  3. #define RANGE_SIZE 7
  4. #define W2KCAL _TEXT("001")
  5. #define ICL _TEXT("002")
  6. #define PERSESS _TEXT("003")
  7. #define XPCAL _TEXT("004")
  8. typedef struct _PRODUCTTYPE_RANGE
  9. {
  10. DWORD dwRangeStart;
  11. DWORD dwRangeEnd;
  12. TCHAR * szProductType;
  13. } PRODUCTTYPE_RANGE, *PPRODUCTTYPE_RANGE;
  14. //When you adjust the ranges make sure you update the RANGE_SIZE define
  15. const PRODUCTTYPE_RANGE g_ProductTypeRanges[RANGE_SIZE] =
  16. {
  17. {15059000,15091019,W2KCAL},
  18. {17000000,18999999,W2KCAL},
  19. {50000000,99999999,W2KCAL},
  20. {100000000,139999999,XPCAL},
  21. {150000000,189999999,PERSESS},
  22. {19000000,19999999,PERSESS},
  23. {20000000,20999999,XPCAL}
  24. };
  25. #endif //_SEQUENCERANGES_H_