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.

22 lines
898 B

  1. //
  2. // Normally when you make a change you change the 3rd digit in the version number,
  3. // ie, COMPATADMIN_BIN_VERSION_DIGIT3 unless you are making major changes.
  4. //
  5. // Example: changing from 3.0.88.0 to 3.0.89.0
  6. //
  7. #define COMPATADMIN_BIN_VERSION_DIGIT1 3
  8. #define COMPATADMIN_BIN_VERSION_DIGIT2 0
  9. //
  10. // Increase me when you update the code unless you are making major changes!
  11. //
  12. #define COMPATADMIN_BIN_VERSION_DIGIT3 96
  13. #define COMPATADMIN_BIN_VERSION_DIGIT4 0
  14. #define COMPATADMIN_BIN_VERSION COMPATADMIN_BIN_VERSION_DIGIT1,COMPATADMIN_BIN_VERSION_DIGIT2,COMPATADMIN_BIN_VERSION_DIGIT3,COMPATADMIN_BIN_VERSION_DIGIT4
  15. #define COMPATADMIN_STRING_VERSION_HELPER(x) #x
  16. #define COMPATADMIN_STRING_VERSION(x) COMPATADMIN_STRING_VERSION_HELPER(x)
  17. #define COMPATADMIN_BIN_VERSION_HELP COMPATADMIN_BIN_VERSION_DIGIT1.COMPATADMIN_BIN_VERSION_DIGIT2.COMPATADMIN_BIN_VERSION_DIGIT3