home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / brerror.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  7KB  |  265 lines

  1. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  2.  // LanguageNames=(English=9:BRERROR1)
  3. //
  4. //  Values are 32 bit values layed out as follows:
  5. //
  6. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  7. //   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
  8. //  +---+-+-+-----------------------+-------------------------------+
  9. //  |Sev|C|R|     Facility          |               Code            |
  10. //  +---+-+-+-----------------------+-------------------------------+
  11. //
  12. //  where
  13. //
  14. //      Sev - is the severity code
  15. //
  16. //          00 - Success
  17. //          01 - Informational
  18. //          10 - Warning
  19. //          11 - Error
  20. //
  21. //      C - is the Customer code flag
  22. //
  23. //      R - is a reserved bit
  24. //
  25. //      Facility - is the facility code
  26. //
  27. //      Code - is the facility's status code
  28. //
  29. //
  30. // Define the facility codes
  31. //
  32.  
  33.  
  34. //
  35. // Define the severity codes
  36. //
  37.  
  38.  
  39. //
  40. // MessageId: MROUTER_E_INVALID_OUTPUT_ID
  41. //
  42. // MessageText:
  43. //
  44. //  The VIF ID is invalid.
  45. //
  46. #define MROUTER_E_INVALID_OUTPUT_ID      ((HRESULT)0xC0040001L)
  47.  
  48. //
  49. // MessageId: MROUTER_E_INVALID_RESV_ID
  50. //
  51. // MessageText:
  52. //
  53. //  The bandwidth reservation ID is invalid.
  54. //
  55. #define MROUTER_E_INVALID_RESV_ID        ((HRESULT)0xC0040002L)
  56.  
  57. //
  58. // MessageId: MROUTER_E_INVALID_ROUTE
  59. //
  60. // MessageText:
  61. //
  62. //  The specified route does not match any entry in the route table.
  63. //
  64. #define MROUTER_E_INVALID_ROUTE          ((HRESULT)0xC0040003L)
  65.  
  66. //
  67. // MessageId: MROUTER_E_INVALID_STATE
  68. //
  69. // MessageText:
  70. //
  71. //  The specified VIF state code is not valid.
  72. //
  73. #define MROUTER_E_INVALID_STATE          ((HRESULT)0xC0040004L)
  74.  
  75. //
  76. // MessageId: MROUTER_E_ROUTE_EXISTS
  77. //
  78. // MessageText:
  79. //
  80. //  The specified route already exists.
  81. //
  82. #define MROUTER_E_ROUTE_EXISTS           ((HRESULT)0xC0040005L)
  83.  
  84. //
  85. // MessageId: MROUTER_E_INSUFFICIENT_BANDWIDTH
  86. //
  87. // MessageText:
  88. //
  89. //  The bandwidth reservation cannot be created or altered because
  90. //  the maximum bandwidth of the target virtual interface would be exceeded.
  91. //
  92. #define MROUTER_E_INSUFFICIENT_BANDWIDTH ((HRESULT)0xC0040006L)
  93.  
  94. //
  95. // MessageId: MROUTER_E_OUTPUT_MAX_REACHED
  96. //
  97. // MessageText:
  98. //
  99. //  The service has reached its maximum number of virtual interfaces.
  100. //  No more virtual interfaces can be installed.
  101. //
  102. #define MROUTER_E_OUTPUT_MAX_REACHED     ((HRESULT)0xC0040007L)
  103.  
  104. //
  105. // MessageId: MROUTER_E_INTERNAL_ERROR
  106. //
  107. // MessageText:
  108. //
  109. //  The service encountered an internal error.
  110. //  This error should not occur during normal usage.
  111. //  Please check the event log on the server computer.
  112. //
  113. #define MROUTER_E_INTERNAL_ERROR         ((HRESULT)0xC0040008L)
  114.  
  115. //
  116. // MessageId: MROUTER_E_OUTPUT_VALUE_ERROR
  117. //
  118. // MessageText:
  119. //
  120. //  The output driver returned invalid configuration data.
  121. //  Make sure that the VIF driver DLL is compatible with
  122. //  this version of the multicast router.
  123. //
  124. #define MROUTER_E_OUTPUT_VALUE_ERROR     ((HRESULT)0xC0040009L)
  125.  
  126. //
  127. // MessageId: MROUTER_E_INVALID_OUTPUT_VALUE
  128. //
  129. // MessageText:
  130. //
  131. //  The configuration value is not a valid datatype.
  132. //
  133. #define MROUTER_E_INVALID_OUTPUT_VALUE   ((HRESULT)0xC004000AL)
  134.  
  135. //
  136. // MessageId: MROUTER_E_OUTPUT_VALUE_REJECTED
  137. //
  138. // MessageText:
  139. //
  140. //  The output driver rejected the configuration data.
  141. //  Make sure the index and data type of the configuration data is valid.
  142. //  Please check the event log on the server computer.
  143. //
  144. #define MROUTER_E_OUTPUT_VALUE_REJECTED  ((HRESULT)0xC004000BL)
  145.  
  146. //
  147. // MessageId: MROUTER_E_OUTPUT_VALUE_NOT_SUPPORTED
  148. //
  149. // MessageText:
  150. //
  151. //  The output driver does not support dynamic configuration.
  152. //
  153. #define MROUTER_E_OUTPUT_VALUE_NOT_SUPPORTED ((HRESULT)0xC004000CL)
  154.  
  155. //
  156. // MessageId: MROUTER_E_OUTPUT_SET_STATE_ERROR
  157. //
  158. // MessageText:
  159. //
  160. //  The output driver refused to change its state.
  161. //  Please check the event log on the server computer.
  162. //
  163. #define MROUTER_E_OUTPUT_SET_STATE_ERROR ((HRESULT)0xC004000DL)
  164.  
  165. //
  166. // MessageId: MROUTER_E_OUTPUT_DLL_LOAD_FAILED
  167. //
  168. // MessageText:
  169. //
  170. //  The output driver DLL could not be loaded.
  171. //  Please check to make sure that the driver DLL path is correct
  172. //  and that the DLL is compatible with this version of the multicast router.
  173. //  Please check the event log on the server computer.
  174. //
  175. #define MROUTER_E_OUTPUT_DLL_LOAD_FAILED ((HRESULT)0xC004000EL)
  176.  
  177. //
  178. // MessageId: MROUTER_E_OUTPUT_DLL_INCOMPATIBLE
  179. //
  180. // MessageText:
  181. //
  182. //  The VIF driver DLL is not compatible with this version of the multicast router.
  183. //
  184. #define MROUTER_E_OUTPUT_DLL_INCOMPATIBLE ((HRESULT)0xC004000FL)
  185.  
  186. //
  187. // MessageId: MROUTER_E_REGISTRY_ERROR
  188. //
  189. // MessageText:
  190. //
  191. //  A registry operation could not be completed.
  192. //  Please check the event log on the server computer.
  193. //
  194. #define MROUTER_E_REGISTRY_ERROR         ((HRESULT)0xC0040010L)
  195.  
  196. //
  197. // MessageId: MROUTER_E_WINSOCK_ERROR
  198. //
  199. // MessageText:
  200. //
  201. //  An error occurred in the WinSock subsystem.
  202. //  Please check the event log on the server computer.
  203. //
  204. #define MROUTER_E_WINSOCK_ERROR          ((HRESULT)0xC0040011L)
  205.  
  206. //
  207. // MessageId: MROUTER_E_OUTPUT_NOT_LOADED
  208. //
  209. // MessageText:
  210. //
  211. //  The operation could not be completed because the output driver is not loaded.
  212. //  Please load the output driver first.
  213. //
  214. #define MROUTER_E_OUTPUT_NOT_LOADED      ((HRESULT)0xC0040012L)
  215.  
  216. //
  217. // MessageId: MROUTER_E_OUTPUT_STARTUP_FAILED
  218. //
  219. // MessageText:
  220. //
  221. //  The virtual interface could not be started.
  222. //  Please check the event log on the server computer.
  223. //
  224. #define MROUTER_E_OUTPUT_STARTUP_FAILED  ((HRESULT)0xC0040013L)
  225.  
  226. //
  227. // MessageId: MROUTER_E_OUTPUT_SHUTDOWN_PENDING
  228. //
  229. // MessageText:
  230. //
  231. //  The operation could not be completed because the virtual interface is in the process of shutting down.
  232. //
  233. #define MROUTER_E_OUTPUT_SHUTDOWN_PENDING ((HRESULT)0xC0040014L)
  234.  
  235. //
  236. // MessageId: MROUTER_E_VIF_CANNOT_DELETE
  237. //
  238. // MessageText:
  239. //
  240. //  The virtual interface cannot be deleted because it is a permanent virtual interface.
  241. //
  242. #define MROUTER_E_VIF_CANNOT_DELETE      ((HRESULT)0xC0040015L)
  243.  
  244. //
  245. // MessageId: MROUTER_E_VIF_DUPLICATE_DISPLAY_NAME
  246. //
  247. // MessageText:
  248. //
  249. //  A virtual interface with the specified display name already exists.
  250. //
  251. #define MROUTER_E_VIF_DUPLICATE_DISPLAY_NAME ((HRESULT)0xC0040016L)
  252.  
  253. //
  254. // MessageId: MROUTER_E_INCONSISTENT_VIF_ID
  255. //
  256. // MessageText:
  257. //
  258. //  The virtual interface and bandwidth reservation specified are inconsistent.
  259. //  The destination virtual interface of the bandwidth reservation does not
  260. //  match the specified virtual interface.
  261. //
  262. #define MROUTER_E_INCONSISTENT_VIF_ID    ((HRESULT)0xC0040017L)
  263.  
  264. #pragma option pop /*P_O_Pop*/
  265.