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.

143 lines
5.6 KiB

  1. /********************************************************************/
  2. /* */
  3. /* MSLS.RC */
  4. /* */
  5. /********************************************************************/
  6. #include <winver.h>
  7. /*--------------------------------------------------------------*/
  8. /* the following values should be modified by the official */
  9. /* builder for each build */
  10. /*--------------------------------------------------------------*/
  11. #ifndef VER_FILEVERSION
  12. #define VER_FILEVERSION 3,10,349,0
  13. #define VER_FILEVERSION_STR "3.10.349.0\0"
  14. #endif
  15. /*-----------------------------------------------*/
  16. /* the following lines are specific to this file */
  17. /*-----------------------------------------------*/
  18. #define VER_PRODUCTVERSION 3,10,0,0
  19. #define VER_PRODUCTVERSION_STR "3.10\0"
  20. #define VER_FILETYPE VFT_DLL
  21. #define VER_FILESUBTYPE VFT2_UNKNOWN
  22. #define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corp. 1996-1999\0"
  23. #define VER_FILEDESCRIPTION_STR "Microsoft Line Services library file\0"
  24. #define VER_INTERNALNAME_STR "msls31\0"
  25. #define VER_ORIGINALFILENAME_STR "MSLS31.DLL\0"
  26. /*--------------------------------------------------------------*/
  27. /* the following section defines values used in the version */
  28. /* data structure for all files, and which do not change. */
  29. /*--------------------------------------------------------------*/
  30. /* default is nodebug */
  31. #ifndef DEBUG
  32. #define VER_DEBUG 0
  33. #else
  34. #define VER_DEBUG VS_FF_DEBUG
  35. #endif
  36. /* default is privatebuild */
  37. #ifndef OFFICIAL
  38. #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
  39. #else
  40. #define VER_PRIVATEBUILD 0
  41. #endif
  42. /* default is prerelease */
  43. #ifndef FINAL
  44. #define VER_PRERELEASE VS_FF_PRERELEASE
  45. #else
  46. #define VER_PRERELEASE 0
  47. #endif
  48. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  49. #define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  50. #define VER_FILEOS VOS__WINDOWS32
  51. #define VER_COMPANYNAME_STR "Microsoft Corporation\0"
  52. #define VER_PRODUCTNAME_STR "Microsoft\256 Line Services\0"
  53. #define VER_LEGALTRADEMARKS1_STR "Microsoft\256 is a registered trademark of Microsoft Corporation.\0"
  54. #define VER_LEGALTRADEMARKS2_STR "Windows(TM) is a trademark of Microsoft Corporation.\0"
  55. /*---------------------------------------------------------------*/
  56. /* */
  57. /* The following section actually creates the version structure. */
  58. /* It is ignored if we are not being invoked by RC. */
  59. /* */
  60. /* These lines should only be modified for localized versions */
  61. /* where indicated. */
  62. /* */
  63. /*---------------------------------------------------------------*/
  64. #ifdef RC_INVOKED
  65. VS_VERSION_INFO VERSIONINFO
  66. FILEVERSION VER_FILEVERSION
  67. PRODUCTVERSION VER_PRODUCTVERSION
  68. FILEFLAGSMASK VER_FILEFLAGSMASK
  69. FILEFLAGS VER_FILEFLAGS
  70. FILEOS VER_FILEOS
  71. FILETYPE VER_FILETYPE
  72. FILESUBTYPE VER_FILESUBTYPE
  73. BEGIN
  74. BLOCK "StringFileInfo"
  75. BEGIN
  76. BLOCK "040904E4"
  77. BEGIN
  78. VALUE "CompanyName", VER_COMPANYNAME_STR
  79. VALUE "FileDescription", VER_FILEDESCRIPTION_STR
  80. VALUE "FileVersion", VER_FILEVERSION_STR
  81. VALUE "InternalName", VER_INTERNALNAME_STR
  82. VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
  83. VALUE "LegalTrademarks1", VER_LEGALTRADEMARKS1_STR
  84. VALUE "LegalTrademarks2", VER_LEGALTRADEMARKS2_STR
  85. VALUE "OriginalFilename",VER_ORIGINALFILENAME_STR
  86. VALUE "ProductName", VER_PRODUCTNAME_STR
  87. VALUE "ProductVersion", VER_PRODUCTVERSION_STR
  88. END
  89. #ifdef INTL
  90. /* this block will be used for localization */
  91. BLOCK "040904E4"
  92. BEGIN
  93. VALUE "CompanyName", VER_COMPANYNAME_STR
  94. VALUE "FileDescription", VER_FILEDESCRIPTION_STR
  95. VALUE "FileVersion", VER_FILEVERSION_STR
  96. VALUE "InternalName", VER_INTERNALNAME_STR
  97. VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
  98. VALUE "LegalTrademarks1", VER_LEGALTRADEMARKS1_STR
  99. VALUE "LegalTrademarks2", VER_LEGALTRADEMARKS2_STR
  100. VALUE "OriginalFilename",VER_ORIGINALFILENAME_STR
  101. VALUE "ProductName", VER_PRODUCTNAME_STR
  102. VALUE "ProductVersion", VER_PRODUCTVERSION_STR
  103. END
  104. #endif
  105. END
  106. BLOCK "VarFileInfo"
  107. BEGIN
  108. /* The following line should only be modified for localized versions. */
  109. /* It consists of any number of WORD,WORD pairs, with each pair */
  110. /* describing a language,codepage combination supported by the file. */
  111. /* */
  112. /* For example, a file might have values "0x409,1252" indicating that it */
  113. /* supports English language (0x409) in the Windows ANSI codepage (1252). */
  114. VALUE "Translation", 0x409, 1252
  115. END
  116. END
  117. #endif
  118. /*----------------------------------*/
  119. /* end of version structure section */
  120. /*----------------------------------*/