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.

243 lines
7.2 KiB

  1. ;//----------------------------------------------------------------------------------------
  2. ;// Values are 32 bit values laid out as follows:
  3. ;//
  4. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  5. ;// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  6. ;// +---+-+-+-----------------------+-------------------------------+
  7. ;// |Sev|C|R| Facility | Code |
  8. ;// +---+-+-+-----------------------+-------------------------------+
  9. ;//-----------------------------------------------------------------------------------------
  10. ;//
  11. ;// MessageId = [number|+number]
  12. ;// Severity = severity_name
  13. ;// Facility = facility_name
  14. ;// SymbolicName = name
  15. ;// OutputBase = {number}
  16. ;//
  17. ;// MessageId = [number|+number]
  18. ;// The MessageId statement marks the beginning of the message definition. A MessageID statement
  19. ;// is required for each message, although the value is optional. If no value is specified, the
  20. ;// value used is the previous value for the facility plus one. If the value is specified as
  21. ;// +number then the value used is the previous value for the facility, plus the number after the
  22. ;// plus sign. Otherwise, if a numeric value is given, that value is used. Any MessageId value that
  23. ;// does not fit in 16 bits is an error.
  24. ;//
  25. ;// SeverityNames = (name=number[:name])
  26. ;// Defines the set of names that are allowed as the value of the Severity keyword in the message
  27. ;// definition. The set is delimited by left and right parentheses. Associated with each severity
  28. ;// name is a number that, when shifted left by 30, gives the bit pattern to logical-OR with the
  29. ;// Facility value and MessageId value to form the full 32-bit message code.
  30. ;//
  31. ;// Severity values occupy the high two bits of a 32-bit message code. Any severity value that does
  32. ;// not fit in two bits is an error. The severity codes can be given symbolic names by following each
  33. ;// value with :name
  34. ;//
  35. ;// FacilityNames = (name=number[:name])
  36. ;// Defines the set of names that are allowed as the value of the Facility keyword in the message
  37. ;// definition. The set is delimited by left and right parentheses. Associated with each facility
  38. ;// name is a number that, when shifted left by 16 bits, gives the bit pattern to logical-OR with
  39. ;// the Severity value and MessageId value to form the full 32-bit message code.
  40. ;//
  41. ;// Facility codes occupy the low-order 12 bits of the high-order 16 bits of a 32-bit message code.
  42. ;// Any facility code that does not fit in 12 bits is an error. This allows for 4096 facility codes.
  43. ;// The first 256 codes are reserved for use by the system software. The facility codes can be given
  44. ;// symbolic names by following each value with :name
  45. ;// OutputBase = {number}
  46. ;// Sets the output radix for the message constants output to the C/C++ include file. It does not
  47. ;// set the radix for the Severity and Facility constants; these default to HEX, but can be output
  48. ;// in decimal by using the -d switch. If present, OutputBase overrides the -d switch for message
  49. ;// constants in the include file. The legal values for number are 10 and 16.
  50. ;//
  51. ;// You can use OutputBase in both the header section and the message definition section of the input
  52. ;// file. You can change OutputBase as often as you like.
  53. ;//------------------------- Supported languages -------------------------------------------
  54. LanguageNames=(English=0x409:MSG00409)
  55. ;//-------------------------- Supported severities -----------------------------------------
  56. SeverityNames=(
  57. Success=0x0
  58. Informational=0x1
  59. Warning=0x2
  60. Error=0x3
  61. )
  62. ;//------------------------- Supported Facilities ------------------------------------------
  63. ;//---------------------NOTE: These must match in the Event logger code---------------------
  64. FacilityNames=(
  65. Generic=0x100:Generic
  66. IISSco=0x101:IISSco
  67. )
  68. ;//--------------------------IIS SCO MAPS Messages------------------------------
  69. MessageId=400
  70. SymbolicName=E_SCO_IIS_INVALID_INDEX
  71. Facility=IISSco
  72. Severity=Error
  73. Language=English
  74. [%1] Server index number is invalid or missing.
  75. .
  76. MessageId=
  77. SymbolicName=E_SCO_IIS_MISSING_FIELD
  78. Facility=IISSco
  79. Severity=Error
  80. Language=English
  81. [%1] Required field is missing in MAPS request data.
  82. .
  83. MessageId=
  84. SymbolicName=E_SCO_IIS_DUPLICATE_SITE
  85. Facility=IISSco
  86. Severity=Error
  87. Language=English
  88. [%1] Server already exists at current ipAddress:port:hostname.
  89. .
  90. MessageId=
  91. SymbolicName=E_SCO_IIS_CREATE_FAILED
  92. Facility=IISSco
  93. Severity=Error
  94. Language=English
  95. [%1] Failed to created requested IIS element.
  96. .
  97. MessageId=
  98. SymbolicName=E_SCO_IIS_SET_NODE_FAILED
  99. Facility=IISSco
  100. Severity=Error
  101. Language=English
  102. [%1] Failed to set required MAPS response parameters.
  103. .
  104. MessageId=
  105. SymbolicName=E_SCO_IIS_DELETE_FAILED
  106. Facility=IISSco
  107. Severity=Error
  108. Language=English
  109. [%1] Failed to delete requested IIS element.
  110. .
  111. MessageId=
  112. SymbolicName=E_SCO_IIS_GET_PROPERTY_FAILED
  113. Facility=IISSco
  114. Severity=Error
  115. Language=English
  116. [%1] Failed to get IIS adsi property value.
  117. .
  118. MessageId=
  119. SymbolicName=E_SCO_IIS_SET_PROPERTY_FAILED
  120. Facility=IISSco
  121. Severity=Error
  122. Language=English
  123. [%1] Failed to set IIS adsi property value.
  124. .
  125. MessageId=
  126. SymbolicName=E_SCO_IIS_CREATE_WEB_FAILED
  127. Facility=IISSco
  128. Severity=Error
  129. Language=English
  130. [%1] Failed to created IIS Web site.
  131. .
  132. MessageId=
  133. SymbolicName=E_SCO_IIS_DELETE_WEB_FAILED
  134. Facility=IISSco
  135. Severity=Error
  136. Language=English
  137. [%1] Failed to delete IIS Web site.
  138. .
  139. MessageId=
  140. SymbolicName=E_SCO_IIS_CREATE_VDIR_FAILED
  141. Facility=IISSco
  142. Severity=Error
  143. Language=English
  144. [%1] Failed to created IIS virtual directory.
  145. .
  146. MessageId=
  147. SymbolicName=E_SCO_IIS_DELETE_VDIR_FAILED
  148. Facility=IISSco
  149. Severity=Error
  150. Language=English
  151. [%1] Failed to delete IIS virtual directory.
  152. .
  153. MessageId=
  154. SymbolicName=E_SCO_IIS_ADS_CREATE_FAILED
  155. Facility=IISSco
  156. Severity=Error
  157. Language=English
  158. [%1] Failed to bind to ADSI ADs object.
  159. .
  160. MessageId=
  161. SymbolicName=E_SCO_IIS_ADSCONTAINER_CREATE_FAILED
  162. Facility=IISSco
  163. Severity=Error
  164. Language=English
  165. [%1] Failed to bind to ADSI ADsContainer object.
  166. .
  167. MessageId=
  168. SymbolicName=E_SCO_IIS_XML_ATTRIBUTE_MISSING
  169. Facility=IISSco
  170. Severity=Error
  171. Language=English
  172. [%1] Failed to retrieve xml attribute value.
  173. .
  174. MessageId=
  175. SymbolicName=E_SCO_IIS_ADSSERVICE_CREATE_FAILED
  176. Facility=IISSco
  177. Severity=Error
  178. Language=English
  179. [%1] Failed to bind to IID_IADsServiceOperations to stop or start IIS service.
  180. .
  181. MessageId=
  182. SymbolicName=E_SCO_IIS_ADSCLASS_CREATE_FAILED
  183. Facility=IISSco
  184. Severity=Error
  185. Language=English
  186. [%1] Failed to bind to IID_IADsClass to get schema object.
  187. .
  188. MessageId=
  189. SymbolicName=E_SCO_IIS_BASEADMIN_CREATE_FAILED
  190. Facility=IISSco
  191. Severity=Error
  192. Language=English
  193. [%1] Failed to bind to IID_IISBASEOBJECT to get Admin Base Object.
  194. .
  195. MessageId=
  196. SymbolicName=E_SCO_IIS_PORTNUMBER_NOT_VALID
  197. Facility=IISSco
  198. Severity=Error
  199. Language=English
  200. [%1] Port number must be a positive integer.
  201. .
  202. MessageId=
  203. SymbolicName=E_SCO_IIS_CREATE_FTP_FAILED
  204. Facility=IISSco
  205. Severity=Error
  206. Language=English
  207. [%1] Failed to created IIS FTP site.
  208. .
  209. MessageId=
  210. SymbolicName=E_SCO_IIS_DELETE_FTP_FAILED
  211. Facility=IISSco
  212. Severity=Error
  213. Language=English
  214. [%1] Failed to delete IIS FTP site.
  215. .