ntverp.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:5k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /****************************************************************************
  2.  *                                                                          *
  3.  *      ntverp.H        -- Version information for internal builds          *
  4.  *                                                                          *
  5.  *      This file is only modified by the official builder to update the    *
  6.  *      VERSION, VER_PRODUCTVERSION, VER_PRODUCTVERSION_STR and             *
  7.  *      VER_PRODUCTBETA_STR values.                                         *
  8.  *                                                                          *
  9.  ****************************************************************************/
  10. /*--------------------------------------------------------------*/
  11. /* the following values should be modified by the official      */
  12. /* builder for each build                                       */
  13. /*                                                              */
  14. /* the VER_PRODUCTBUILD lines must contain the product          */
  15. /* comments and end with the build#<CR><LF>                     */
  16. /*                                                              */
  17. /* the VER_PRODUCTBETA_STR lines must  contain the product      */
  18. /* comments and end with "some string"<CR><LF>                  */
  19. /*--------------------------------------------------------------*/
  20. #if _MSC_VER > 1000
  21. #pragma once
  22. #endif
  23. #define VER_PRODUCTBUILD            /* NT */   2601
  24. #if defined(NASHVILLE)
  25. // IE components now use NT's VER_PRODUCTBUILD, but define other different major/minor version #'s
  26. #include <ieverp.h>
  27. #else
  28. #define VER_PRODUCTMAJORVERSION     5
  29. #define VER_PRODUCTMINORVERSION     1
  30. #define VER_PRODUCTBUILD_QFE        0
  31. #define VER_PRODUCTBETA_STR         /* NT */     ""
  32. #define VER_PRODUCTVERSION_MAJORMINOR2(x,y) #x "." #y
  33. #define VER_PRODUCTVERSION_MAJORMINOR1(x,y) VER_PRODUCTVERSION_MAJORMINOR2(x, y)
  34. #define VER_PRODUCTVERSION_STRING   VER_PRODUCTVERSION_MAJORMINOR1(VER_PRODUCTMAJORVERSION, VER_PRODUCTMINORVERSION)
  35. #define VER_PRODUCTVERSION          VER_PRODUCTMAJORVERSION,VER_PRODUCTMINORVERSION,VER_PRODUCTBUILD,VER_PRODUCTBUILD_QFE
  36. #define VER_PRODUCTVERSION_W        (0x0501)
  37. #define VER_PRODUCTVERSION_DW       (0x05010000 | VER_PRODUCTBUILD)
  38. /*--------------------------------------------------------------*/
  39. /* this value is used by third party drivers build with the DDK */
  40. /* and internally, to avoid version number conflicts.           */
  41. /*--------------------------------------------------------------*/
  42. #define VER_DDK_PRODUCTVERSION       5,01
  43. #define VER_DDK_PRODUCTVERSION_STR  "5.01"
  44. #endif
  45. #if     (VER_PRODUCTBUILD < 10)
  46. #define VER_BPAD "000"
  47. #elif   (VER_PRODUCTBUILD < 100)
  48. #define VER_BPAD "00"
  49. #elif   (VER_PRODUCTBUILD < 1000)
  50. #define VER_BPAD "0"
  51. #else
  52. #define VER_BPAD
  53. #endif
  54. #define VER_PRODUCTVERSION_STR2(x,y) VER_PRODUCTVERSION_STRING "." VER_BPAD #x "." #y
  55. #define VER_PRODUCTVERSION_STR1(x,y) VER_PRODUCTVERSION_STR2(x, y)
  56. #define VER_PRODUCTVERSION_STR       VER_PRODUCTVERSION_STR1(VER_PRODUCTBUILD, VER_PRODUCTBUILD_QFE)
  57. /*--------------------------------------------------------------*/
  58. /* the following section defines values used in the version     */
  59. /* data structure for all files, and which do not change.       */
  60. /*--------------------------------------------------------------*/
  61. /* default is nodebug */
  62. #if DBG
  63. #define VER_DEBUG                   VS_FF_DEBUG
  64. #else
  65. #define VER_DEBUG                   0
  66. #endif
  67. /* default is prerelease */
  68. #if BETA
  69. #define VER_PRERELEASE              VS_FF_PRERELEASE
  70. #else
  71. #define VER_PRERELEASE              0
  72. #endif
  73. #if OFFICIAL_BUILD
  74. #define VER_PRIVATE                 0
  75. #else
  76. #define VER_PRIVATE                 VS_FF_PRIVATEBUILD
  77. #endif
  78. #define VER_FILEFLAGSMASK           VS_FFI_FILEFLAGSMASK
  79. #define VER_FILEOS                  VOS_NT_WINDOWS32
  80. #define VER_FILEFLAGS               (VER_PRERELEASE|VER_DEBUG|VER_PRIVATE)
  81. // @@BEGIN_DDKSPLIT
  82. #if 0
  83. // @@END_DDKSPLIT
  84. #define VER_COMPANYNAME_STR         "Windows (R) 2000 DDK provider"
  85. #define VER_PRODUCTNAME_STR         "Windows (R) 2000 DDK driver"
  86. #define VER_LEGALTRADEMARKS_STR     
  87. "Windows (R) is a registered trademark of Microsoft Corporation."
  88. // @@BEGIN_DDKSPLIT
  89. #else
  90. #define VER_COMPANYNAME_STR         "Microsoft Corporation"
  91. #define VER_PRODUCTNAME_STR         "Microsoft256 Windows256 Operating System"
  92. #define VER_LEGALTRADEMARKS_STR     
  93. "Microsoft256 is a registered trademark of Microsoft Corporation. Windows256 is a registered trademark of Microsoft Corporation."
  94. #endif
  95. // @@END_DDKSPLIT