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.

73 lines
2.7 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. #ifdef WIN32
  12. #include <winver.h>
  13. #else
  14. #include <ver.h>
  15. #endif
  16. #endif
  17. /*--------------------------------------------------------------*/
  18. /* the following entry should be phased out in favor of */
  19. /* VER_PRODUCTVERSION_STR, but is used in the shell today. */
  20. /*--------------------------------------------------------------*/
  21. /*--------------------------------------------------------------*/
  22. /* the following values should be modified by the official */
  23. /* builder for each build */
  24. /*--------------------------------------------------------------*/
  25. #define VERSION "0.0.0"
  26. #define VER_FILEVERSION_STR "0.0.0\0"
  27. #define VER_FILEVERSION 0,0,0,0
  28. #define VER_PRODUCTVERSION_STR "0.0.0\0"
  29. #define VER_PRODUCTVERSION 0,0,0,0
  30. // #define OFFICIAL
  31. // #define FINAL
  32. /*--------------------------------------------------------------*/
  33. /* the following section defines values used in the version */
  34. /* data structure for all files, and which do not change. */
  35. /*--------------------------------------------------------------*/
  36. /* default is nodebug */
  37. #ifndef DEBUG
  38. #define VER_DEBUG 0
  39. #else
  40. #define VER_DEBUG VS_FF_DEBUG
  41. #endif
  42. /* default is privatebuild */
  43. #ifndef OFFICIAL
  44. #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
  45. #else
  46. #define VER_PRIVATEBUILD 0
  47. #endif
  48. /* default is prerelease */
  49. #ifndef FINAL
  50. #define VER_PRERELEASE VS_FF_PRERELEASE
  51. #else
  52. #define VER_PRERELEASE 0
  53. #endif
  54. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  55. #define VER_FILEOS VOS_DOS_WINDOWS16
  56. #define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  57. #define VER_COMPANYNAME_STR "Microsoft Corporation\0"
  58. #define VER_PRODUCTNAME_STR "Microsoft\256 Windows(TM) Operating System\0"
  59. #define VER_LEGALTRADEMARKS_STR \
  60. "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0"