Source code of Windows XP (NT5)
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.

62 lines
2.9 KiB

  1. /****************************************************************************
  2. * *
  3. * clusverp.H -- Version information for cluster builds *
  4. * *
  5. * This file is only modified by the official builder to update the *
  6. * VERSION, VER_PRODUCTVERSION, VER_PRODUCTVERSION_STR and *
  7. * VER_PRODUCTBETA_STR values. *
  8. * *
  9. ****************************************************************************/
  10. /*--------------------------------------------------------------*/
  11. /* the following values should be modified by the official */
  12. /* builder for each build */
  13. /* */
  14. /* the VER_PRODUCTBUILD lines must contain the product */
  15. /* comments (Win9x or NT) and end with the build#<CR><LF> */
  16. /* */
  17. /* the VER_PRODUCTBETA_STR lines must contain the product */
  18. /* comments (Win9x or NT) and end with "some string"<CR><LF> */
  19. /*--------------------------------------------------------------*/
  20. #define VER_PRODUCTBUILD_QFE 0
  21. #define BETA 1
  22. #define VER_PRODUCTBUILD /* NT */ 169
  23. #define VER_PRODUCTBETA_STR /* NT */ ""
  24. #define VER_PRODUCTVERSION_STRING "1.00"
  25. #define VER_PRODUCTVERSION 1,00,VER_PRODUCTBUILD,VER_PRODUCTBUILD_QFE
  26. #define VER_PRODUCTVERSION_W (0x0100)
  27. #define VER_PRODUCTVERSION_DW (0x01000000 | VER_PRODUCTBUILD)
  28. #define VER_PRODUCTVERSION_STR2(x,y) VER_PRODUCTVERSION_STRING "." #x "." #y
  29. #define VER_PRODUCTVERSION_STR1(x,y) VER_PRODUCTVERSION_STR2(x, y)
  30. #define VER_PRODUCTVERSION_STR VER_PRODUCTVERSION_STR1(VER_PRODUCTBUILD, VER_PRODUCTBUILD_QFE)
  31. /*--------------------------------------------------------------*/
  32. /* the following section defines values used in the version */
  33. /* data structure for all files, and which do not change. */
  34. /*--------------------------------------------------------------*/
  35. /* default is nodebug */
  36. #if DBG
  37. #define VER_DEBUG VS_FF_DEBUG
  38. #else
  39. #define VER_DEBUG 0
  40. #endif
  41. /* default is prerelease */
  42. #if BETA
  43. #define VER_PRERELEASE VS_FF_PRERELEASE
  44. #else
  45. #define VER_PRERELEASE 0
  46. #endif
  47. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  48. #define VER_FILEOS VOS_NT_WINDOWS32
  49. #define VER_FILEFLAGS (VER_PRERELEASE|VER_DEBUG)
  50. #define VER_COMPANYNAME_STR "Microsoft Corporation"
  51. #define VER_PRODUCTNAME_STR "Microsoft(R) Cluster Server"
  52. #define VER_LEGALTRADEMARKS_STR \
  53. "Microsoft(R) is a registered trademark of Microsoft Corporation. Windows NT(TM) is a trademark of Microsoft Corporation."