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.

91 lines
3.0 KiB

  1. ;/*++
  2. ; Copyright (c) 1997 Gemplus Development
  3. ;
  4. ; Name : LOGMSG.mc
  5. ;
  6. ; Description : Constant definitions for the I/O error code log values.
  7. ;
  8. ; Compiler : Microsoft DDK for Windows NT 4
  9. ;
  10. ; Host : IBM PC and compatible machines under Windows NT 4
  11. ;
  12. ; Release : 1.00.001
  13. ;
  14. ; Last Modif : 19/11/98 V1.00.02 (Y. Nadeau)
  15. ; - Add Interrupt et IO Port error
  16. ; ??/08/97: V1.00.01 (P. Plouidy)
  17. ; - Start of development.
  18. ;
  19. ;--*/
  20. ;
  21. ;#ifndef __LOGMSG__
  22. ;#define __LOGMSG__
  23. ;
  24. ;
  25. ;//
  26. ;// Status values are 32 bit values layed out as follows:
  27. ;//
  28. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  29. ;// 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
  30. ;// +---+-+-------------------------+-------------------------------+
  31. ;// |Sev|C| Facility | Code |
  32. ;// +---+-+-------------------------+-------------------------------+
  33. ;//
  34. ;// where
  35. ;//
  36. ;// Sev - is the severity code
  37. ;//
  38. ;// 00 - Success
  39. ;// 01 - Informational
  40. ;// 10 - Warning
  41. ;// 11 - Error
  42. ;//
  43. ;// C - is the Customer code flag
  44. ;//
  45. ;// Facility - is the facility code
  46. ;//
  47. ;// Code - is the facility's status code
  48. ;//
  49. ;
  50. MessageIdTypedef=NTSTATUS
  51. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  52. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  53. Warning=0x2:STATUS_SEVERITY_WARNING
  54. Error=0x3:STATUS_SEVERITY_ERROR
  55. )
  56. FacilityNames=(System=0x0
  57. RpcRuntime=0x2:FACILITY_RPC_RUNTIME
  58. RpcStubs=0x3:FACILITY_RPC_STUBS
  59. Io=0x4:FACILITY_IO_ERROR_CODE
  60. Smartcard=0x05:FACILITY_SMARTCARD_ERROR_CODE
  61. )
  62. MessageId=0x0001 Facility=Io Severity=Error SymbolicName=GEMSCR0D_UNABLE_TO_INITIALIZE
  63. Language=English
  64. Device instance has failed initialization and will not be available for use.
  65. .
  66. MessageId=0x0002 Facility=Smartcard Severity=Error SymbolicName=GEMSCR0D_CARD_POWERED_OFF
  67. Language=English
  68. The smart card present in the PCMCIA (PC Card) reader is NOT powered on.
  69. .
  70. MessageId=0x0003 Facility=Smartcard Severity=Error SymbolicName=GEMSCR0D_ERROR_CLAIM_RESOURCES
  71. Language=English
  72. Resources can not be claimed or an resource conflict exists.
  73. .
  74. MessageId=0x0004 Facility=Smartcard Severity=Error SymbolicName=GEMSCR0D_INSUFFICIENT_RESOURCES
  75. Language=English
  76. Insufficient system resources to start device.
  77. .
  78. MessageId=0x0005 Facility=Smartcard Severity=Error SymbolicName=GEMSCR0D_ERROR_INTERRUPT
  79. Language=English
  80. Can't connect to the interrupt provided by the system.
  81. Please try to change the 'Interrupt Request' setting in Device Manager.
  82. .
  83. MessageId=0x0006 Facility=Smartcard Severity=Error SymbolicName=GEMSCR0D_ERROR_IO_PORT
  84. Language=English
  85. No I/O port specified or port can not be mapped.
  86. Please try to change the 'Input/Output Range' setting in the Device Manager.
  87. .
  88. ;#endif /* __LOGMSG__ */