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.

68 lines
3.1 KiB

  1. /****************************************************************************
  2. * *
  3. * ntverp.H -- Version information for internal 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 1
  21. #if defined(NASHVILLE)
  22. #define VER_PRODUCTBUILD /* Win9x */ 1089
  23. #define VER_PRODUCTBETA_STR /* Win9x */ ""
  24. #define VER_PRODUCTVERSION_STR "4.70"
  25. #define VER_PRODUCTVERSION 4,70,VER_PRODUCTBUILD,VER_PRODUCTBUILD_QFE
  26. #define VER_PRODUCTVERSION_W (0x0446)
  27. #define VER_PRODUCTVERSION_DW (0x04460000 | VER_PRODUCTBUILD)
  28. #else
  29. #define VER_PRODUCTBUILD /* NT */ 0984
  30. #define VER_PRODUCTBETA_STR /* NT */ ""
  31. #define VER_PRODUCTVERSION_STR "5.00.0984"
  32. #define VER_PRODUCTVERSION 5,00,VER_PRODUCTBUILD,VER_PRODUCTBUILD_QFE
  33. #define VER_PRODUCTVERSION_W (0x0500)
  34. #define VER_PRODUCTVERSION_DW (0x05000000 | VER_PRODUCTBUILD)
  35. #endif
  36. /*--------------------------------------------------------------*/
  37. /* the following section defines values used in the version */
  38. /* data structure for all files, and which do not change. */
  39. /*--------------------------------------------------------------*/
  40. /* default is nodebug */
  41. #if DBG
  42. #define VER_DEBUG VS_FF_DEBUG
  43. #else
  44. #define VER_DEBUG 0
  45. #endif
  46. /* default is prerelease */
  47. #if BETA
  48. #define VER_PRERELEASE VS_FF_PRERELEASE
  49. #else
  50. #define VER_PRERELEASE 0
  51. #endif
  52. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  53. #define VER_FILEOS VOS_NT_WINDOWS32
  54. #define VER_FILEFLAGS (VER_PRERELEASE|VER_DEBUG)
  55. #define VER_COMPANYNAME_STR "Microsoft Corporation"
  56. #define VER_PRODUCTNAME_STR "Microsoft(R) Windows NT(TM) Operating System"
  57. #define VER_LEGALTRADEMARKS_STR \
  58. "Microsoft(R) is a registered trademark of Microsoft Corporation. Windows NT(TM) is a trademark of Microsoft Corporation."