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.

64 lines
2.5 KiB

  1. /****************************************************************************
  2. * *
  3. * VERSION.H -- Version information for internal builds *
  4. * *
  5. * This file is only modified by the official builder to update the *
  6. * VERSION, VER_PRODUCTVERSION and VER_PRODUCTVERSION_STR values *
  7. * *
  8. ****************************************************************************/
  9. #ifndef VS_FF_DEBUG
  10. /* ver.h defines constants needed by the VS_VERSION_INFO structure */
  11. #include <ver.h>
  12. #endif
  13. /*--------------------------------------------------------------*/
  14. /* the following entry should be phased out in favor of */
  15. /* VER_PRODUCTVERSION_STR, but is used in the shell today. */
  16. /*--------------------------------------------------------------*/
  17. /*--------------------------------------------------------------*/
  18. /* the following values should be modified by the official */
  19. /* builder for each build */
  20. /*--------------------------------------------------------------*/
  21. #define VERSION "3.1"
  22. #define VER_PRODUCTVERSION_STR "3.10\0"
  23. #define VER_PRODUCTVERSION 3,10,0,103
  24. /*--------------------------------------------------------------*/
  25. /* the following section defines values used in the version */
  26. /* data structure for all files, and which do not change. */
  27. /*--------------------------------------------------------------*/
  28. /* default is nodebug */
  29. #ifndef DEBUG
  30. #define VER_DEBUG 0
  31. #else
  32. #define VER_DEBUG VS_FF_DEBUG
  33. #endif
  34. /* default is privatebuild */
  35. #ifndef OFFICIAL
  36. #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
  37. #else
  38. #define VER_PRIVATEBUILD 0
  39. #endif
  40. /* default is prerelease */
  41. #ifndef FINAL
  42. #define VER_PRERELEASE VS_FF_PRERELEASE
  43. #else
  44. #define VER_PRERELEASE 0
  45. #endif
  46. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  47. #define VER_FILEOS VOS_DOS_WINDOWS16
  48. #define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  49. #define VER_COMPANYNAME_STR "Microsoft Corporation\0"
  50. #define VER_PRODUCTNAME_STR "Microsoft\256 Windows(TM) Operating System\0"
  51. #define VER_LEGALTRADEMARKS_STR \
  52. "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0"