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.

79 lines
2.3 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;
  4. ;Module Name:
  5. ;
  6. ; CMBP0LOG.mc
  7. ;
  8. ;Abstract:
  9. ;
  10. ; Constant definitions for the I/O error code log values.
  11. ;
  12. ;Revision History:
  13. ;
  14. ;--*/
  15. ;
  16. ;#ifndef __CMBP0LOG_H__
  17. ;#define __CMBP0LOG_H__
  18. ;
  19. ;//
  20. ;// Status values are 32 bit values layed out as follows:
  21. ;//
  22. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  23. ;// 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
  24. ;// +---+-+-------------------------+-------------------------------+
  25. ;// |Sev|C| Facility | Code |
  26. ;// +---+-+-------------------------+-------------------------------+
  27. ;//
  28. ;// where
  29. ;//
  30. ;// Sev - is the severity code
  31. ;//
  32. ;// 00 - Success
  33. ;// 01 - Informational
  34. ;// 10 - Warning
  35. ;// 11 - Error
  36. ;//
  37. ;// C - is the Customer code flag
  38. ;//
  39. ;// Facility - is the facility code
  40. ;//
  41. ;// Code - is the facility's status code
  42. ;//
  43. ;
  44. MessageIdTypedef=NTSTATUS
  45. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  46. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  47. Warning=0x2:STATUS_SEVERITY_WARNING
  48. Error=0x3:STATUS_SEVERITY_ERROR
  49. )
  50. FacilityNames=(System=0x0
  51. RpcRuntime=0x2:FACILITY_RPC_RUNTIME
  52. RpcStubs=0x3:FACILITY_RPC_STUBS
  53. Io=0x4:FACILITY_IO_ERROR_CODE
  54. Smartcard=0x05:FACILITY_SMARTCARD_ERROR_CODE
  55. )
  56. MessageId=0x0001 Facility=Smartcard Severity=Error SymbolicName=CMMOB_NO_DEVICE_FOUND
  57. Language=English
  58. No CardMan Mobile smartcard reader found in the system.
  59. .
  60. MessageId=0x0002 Facility=Smartcard Severity=Error SymbolicName=CMMOB_CANT_INITIALIZE_READER
  61. Language=English
  62. The reader inserted is not working properly.
  63. .
  64. MessageId=0x0003 Facility=Smartcard Severity=Error SymbolicName=CMMOB_INSUFFICIENT_RESOURCES
  65. Language=English
  66. Insufficient system resources to start device.
  67. .
  68. MessageId=0x0004 Facility=Smartcard Severity=Error SymbolicName=CMMOB_ERROR_MEM_PORT
  69. Language=English
  70. No memory or specified memory can not be mapped.
  71. .
  72. MessageId=0x0005 Facility=Smartcard Severity=Error SymbolicName=CMMOB_ERROR_CLAIM_RESOURCES
  73. Language=English
  74. Resources can not be claimed or an resource conflict exists.
  75. .
  76. ;#endif // __CMBP0LOG_H__