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.

70 lines
2.8 KiB

  1. /*
  2. ** #define OFFICIAL 1
  3. ** #define FINAL 1
  4. */
  5. /****************************************************************************
  6. * *
  7. * VERSION.H -- Version information for internal builds *
  8. * *
  9. * This file is only modified by the official builder to update the *
  10. * VERSION, VER_PRODUCTVERSION and VER_PRODUCTVERSION_STR values *
  11. * *
  12. ****************************************************************************/
  13. #ifndef VS_FF_DEBUG
  14. /* ver.h defines constants needed by the VS_VERSION_INFO structure */
  15. #include "ver.h"
  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 "4.00.105"
  26. #define VER_PRODUCTVERSION_STR "4.00.105\0"
  27. #define VER_PRODUCTVERSION 4,00,0,105
  28. #define VER_PRODUCTVERSION_DW (0x04000000 | 105)
  29. /*--------------------------------------------------------------*/
  30. /* the following section defines values used in the version */
  31. /* data structure for all files, and which do not change. */
  32. /*--------------------------------------------------------------*/
  33. /* default is nodebug */
  34. #ifndef DEBUG
  35. #define VER_DEBUG 0
  36. #else
  37. #define VER_DEBUG VS_FF_DEBUG
  38. #endif
  39. /* default is privatebuild */
  40. #ifndef OFFICIAL
  41. #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
  42. #else
  43. #define VER_PRIVATEBUILD 0
  44. #endif
  45. /* default is prerelease */
  46. #ifndef FINAL
  47. #define VER_PRERELEASE VS_FF_PRERELEASE
  48. #else
  49. #define VER_PRERELEASE 0
  50. #endif
  51. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  52. #define VER_FILEOS VOS_DOS_WINDOWS16
  53. #define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  54. #define VER_COMPANYNAME_STR "Microsoft Corporation\0"
  55. #define VER_PRODUCTNAME_STR "Microsoft\256 Windows(TM) Operating System\0"
  56. #define VER_LEGALTRADEMARKS_STR \
  57. "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0"