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.

78 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_DLL
  18. #define VER_FILESUBTYPE VFT2_UNKNOWN
  19. #ifndef VER_FILEDESCRIPTION_STR
  20. #define VER_FILEDESCRIPTION_STR "SAPI 5"
  21. #endif
  22. #ifndef VER_INTERNALNAME_STR
  23. #define VER_INTERNALNAME_STR "SAPI5"
  24. #endif
  25. /*--------------------------------------------------------------*/
  26. /* the following entry should be phased out in favor of */
  27. /* VER_PRODUCTVERSION_STR, but is used in the shell today. */
  28. /*--------------------------------------------------------------*/
  29. /*--------------------------------------------------------------*/
  30. /* this include file is generated by the build process to */
  31. /* reflect the current build number */
  32. /*--------------------------------------------------------------*/
  33. #include "currver.inc"
  34. #define OFFICIAL 1
  35. #define FINAL 1
  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. #ifdef _DEBUG
  42. #define VER_DEBUG VS_FF_DEBUG
  43. #else
  44. #define VER_DEBUG 0
  45. #endif
  46. /* default is privatebuild */
  47. #ifndef OFFICIAL
  48. #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
  49. #else
  50. #define VER_PRIVATEBUILD 0
  51. #endif
  52. /* default is prerelease */
  53. #ifndef FINAL
  54. #define VER_PRERELEASE VS_FF_PRERELEASE
  55. #else
  56. #define VER_PRERELEASE 0
  57. #endif
  58. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  59. #define VER_FILEOS VOS_DOS_WINDOWS32
  60. #define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  61. #define VER_COMPANYNAME_STR "Microsoft Corporation\0"
  62. #define VER_PRODUCTNAME_STR "Microsoft\256 Windows(TM) Operating System\0"
  63. #define VER_LEGALTRADEMARKS_STR \
  64. "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0"
  65. #include "common.ver"