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.

82 lines
2.3 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Abstract:
  4. ;
  5. ; Constant definitions for the I/O error code log values.
  6. ;
  7. ;--*/
  8. ;
  9. ;#ifndef _MXLOG_
  10. ;#define _MXLOG_
  11. ;
  12. ;//
  13. ;// Status values are 32 bit values layed out as follows:
  14. ;//
  15. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  16. ;// 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
  17. ;// +---+-+-------------------------+-------------------------------+
  18. ;// |Sev|C| Facility | Code |
  19. ;// +---+-+-------------------------+-------------------------------+
  20. ;//
  21. ;// where
  22. ;//
  23. ;// Sev - is the severity code
  24. ;//
  25. ;// 00 - Success
  26. ;// 01 - Informational
  27. ;// 10 - Warning
  28. ;// 11 - Error
  29. ;//
  30. ;// C - is the Customer code flag
  31. ;//
  32. ;// Facility - is the facility code
  33. ;//
  34. ;// Code - is the facility's status code
  35. ;//
  36. ;
  37. MessageIdTypedef=NTSTATUS
  38. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  39. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  40. Warning=0x2:STATUS_SEVERITY_WARNING
  41. Error=0x3:STATUS_SEVERITY_ERROR
  42. )
  43. FacilityNames=(System=0x0
  44. RpcRuntime=0x2:FACILITY_RPC_RUNTIME
  45. RpcStubs=0x3:FACILITY_RPC_STUBS
  46. Io=0x4:FACILITY_IO_ERROR_CODE
  47. Serial=0x6:FACILITY_SERIAL_ERROR_CODE
  48. )
  49. MessageId=0x0001 Facility=Serial Severity=Error SymbolicName=MXENUM_INSUFFICIENT_RESOURCES
  50. Language=English
  51. Not enough resources were available for the driver.
  52. .
  53. MessageId=0x0002 Facility=Serial Severity=Error SymbolicName=MXENUM_NOT_INTELLIO_BOARDS
  54. Language=English
  55. Find a board but not Moxa's Intellio Family board,so disable it.
  56. .
  57. MessageId=0x0003 Facility=Serial Severity=Informational SymbolicName=MXENUM_DRIVER_START
  58. Language=English
  59. Moxa Intellio Family driver started
  60. .
  61. MessageId=0x0036 Facility=Serial Severity=Informational SymbolicName=MXENUM_DOWNLOAD_OK
  62. Language=English
  63. MOXA Intellio %2 series board found and downloaded successfully.
  64. .
  65. MessageId=0x0037 Facility=Serial Severity=Error SymbolicName=MXENUM_DOWNLOAD_FAIL
  66. Language=English
  67. MOXA Intellio %2 series board downloaded unsuccessfully (%3).
  68. .
  69. ;#endif /* _MXLOG_ */