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.

75 lines
3.1 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. * version.h is created on the fly from verhead.bat and vertail.h, *
  9. * with the current version numbers inserted in between *
  10. * *
  11. ****************************************************************************/
  12. #ifndef VER_H
  13. /* ver.h defines constants needed by the VS_VERSION_INFO structure */
  14. #include <winver.h>
  15. #endif
  16. #include <windows.h>
  17. #define VER_FILETYPE VFT_APP
  18. #define VER_FILESUBTYPE VFT2_UNKNOWN
  19. #define VER_FILEDESCRIPTION_STR "SAPISVR 5"
  20. #define VER_INTERNALNAME_STR "SAPISVR5"
  21. /*--------------------------------------------------------------*/
  22. /* the following entry should be phased out in favor of */
  23. /* VER_PRODUCTVERSION_STR, but is used in the shell today. */
  24. /*--------------------------------------------------------------*/
  25. /*--------------------------------------------------------------*/
  26. /* the following values should be modified by the official */
  27. /* builder for each build */
  28. /*--------------------------------------------------------------*/
  29. #include "currver.inc"
  30. #define OFFICIAL 1
  31. #define FINAL 1
  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. #if _DEBUG
  38. #define VER_DEBUG VS_FF_DEBUG
  39. #else
  40. #define VER_DEBUG 0
  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_WINDOWS32
  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"
  61. #include "common.ver"