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.

136 lines
4.4 KiB

  1. ;//File Name: rocklog.mc
  2. ;//Constant definitions for the I/O error code log values.
  3. ;
  4. ;#ifndef _ROCKLOG_
  5. ;#define _ROCKLOG_
  6. ;
  7. ;//
  8. ;// Status values are 32 bit values layed out as follows:
  9. ;//
  10. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  11. ;// 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
  12. ;// +---+-+-------------------------+-------------------------------+
  13. ;// |Sev|C| Facility | Code |
  14. ;// +---+-+-------------------------+-------------------------------+
  15. ;//
  16. ;// where
  17. ;//
  18. ;// Sev - is the severity code
  19. ;//
  20. ;// 00 - Success
  21. ;// 01 - Informational
  22. ;// 10 - Warning
  23. ;// 11 - Error
  24. ;//
  25. ;// C - is the Customer code flag
  26. ;//
  27. ;// Facility - is the facility code
  28. ;//
  29. ;// Code - is the facility's status code
  30. ;//
  31. ;
  32. MessageIdTypedef=NTSTATUS
  33. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  34. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  35. Warning=0x2:STATUS_SEVERITY_WARNING
  36. Error=0x3:STATUS_SEVERITY_ERROR
  37. )
  38. FacilityNames=(System=0x0
  39. RpcRuntime=0x2:FACILITY_RPC_RUNTIME
  40. RpcStubs=0x3:FACILITY_RPC_STUBS
  41. Io=0x4:FACILITY_IO_ERROR_CODE
  42. Serial=0x6:FACILITY_SERIAL_ERROR_CODE
  43. )
  44. MessageId=0x0001 Facility=Serial Severity=Warning SymbolicName=SERIAL_RP_INIT_FAIL
  45. Language=English
  46. The RocketPort or RocketModem could not be initialized with the current settings.
  47. .
  48. MessageId=0x0002 Facility=Serial Severity=Informational SymbolicName=SERIAL_RP_INIT_PASS
  49. Language=English
  50. The RocketPort/RocketModem driver has successfully initialized its hardware.
  51. .
  52. MessageId=0x0003 Facility=Serial Severity=Warning SymbolicName=SERIAL_NO_SYMLINK_CREATED
  53. Language=English
  54. Unable to create the symbolic link for %2.
  55. .
  56. MessageId=0x0004 Facility=Serial Severity=Warning SymbolicName=SERIAL_NO_DEVICE_MAP_CREATED
  57. Language=English
  58. Unable to create the device map entry for %2.
  59. .
  60. MessageId=0x0005 Facility=Serial Severity=Warning SymbolicName=SERIAL_NO_DEVICE_MAP_DELETED
  61. Language=English
  62. Unable to delete the device map entry for %2.
  63. .
  64. MessageId=0x0006 Facility=Serial Severity=Error SymbolicName=SERIAL_UNREPORTED_IRQL_CONFLICT
  65. Language=English
  66. Another driver on the system, which did not report its resources, has already claimed interrupt %3 used by %2.
  67. .
  68. MessageId=0x0007 Facility=Serial Severity=Error SymbolicName=SERIAL_INSUFFICIENT_RESOURCES
  69. Language=English
  70. Not enough memory was available to allocate internal storage needed for %2.
  71. .
  72. MessageId=0x0008 Facility=Serial Severity=Error SymbolicName=SERIAL_NO_PARAMETERS_INFO
  73. Language=English
  74. No Parameters subkey was found for user defined data.
  75. .
  76. MessageId=0x0009 Facility=Serial Severity=Error SymbolicName=SERIAL_UNABLE_TO_ACCESS_CONFIG
  77. Language=English
  78. Specific user configuration data is unretrievable.
  79. .
  80. MessageId=0x000a Facility=Serial Severity=Error SymbolicName=SERIAL_UNKNOWN_BUS
  81. Language=English
  82. The bus type for %2 is not recognizable.
  83. .
  84. MessageId=0x000b Facility=Serial Severity=Error SymbolicName=SERIAL_BUS_NOT_PRESENT
  85. Language=English
  86. The bus type for %2 is not available on this computer.
  87. .
  88. MessageId=0x000c Facility=Serial Severity=Error SymbolicName=SERIAL_INVALID_USER_CONFIG
  89. Language=English
  90. User configuration for parameter %2 must have %3.
  91. .
  92. MessageId=0x000d Facility=Serial Severity=Error SymbolicName=SERIAL_RP_RESOURCE_CONFLICT
  93. Language=English
  94. A resource conflict was detected, the RocketPort/RocketModem driver will not load.
  95. .
  96. MessageId=0x000e Facility=Serial Severity=Error SymbolicName=SERIAL_RP_HARDWARE_FAIL
  97. Language=English
  98. The RocketPort/RocketModem driver could not initialize its hardware, the driver will not be loaded.
  99. .
  100. MessageId=0x000f Facility=Serial Severity=Error SymbolicName=SERIAL_DEVICEOBJECT_FAILED
  101. Language=English
  102. The Device Object for the RocketPort or RocketModem could not be created, the driver will not load.
  103. .
  104. MessageId=0x0010 Facility=Serial Severity=Error SymbolicName=SERIAL_CUSTOM_ERROR_MESSAGE
  105. Language=English
  106. %2
  107. .
  108. MessageId=0x0011 Facility=Serial Severity=Informational SymbolicName=SERIAL_CUSTOM_INFO_MESSAGE
  109. Language=English
  110. %2
  111. .
  112. MessageId=0x0012 Facility=Serial Severity=Informational SymbolicName=SERIAL_NT50_INIT_PASS
  113. Language=English
  114. The RocketPort/RocketModem driver has successfully installed.
  115. .
  116. ;#endif