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.

113 lines
3.5 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Copyright (c) 1991 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; pcmciamc.h
  8. ;
  9. ;Abstract:
  10. ;
  11. ; Constant definitions for the PCMCIA error values
  12. ;
  13. ;Author:
  14. ;
  15. ; Bob Rinne (BobRi) 8-Nov-1994
  16. ;
  17. ;Revision History:
  18. ;
  19. ;--*/
  20. ;
  21. ;
  22. ;//
  23. ;// Status values are 32 bit values layed out as follows:
  24. ;//
  25. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  26. ;// 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
  27. ;// +---+-+-------------------------+-------------------------------+
  28. ;// |Sev|C| Facility | Code |
  29. ;// +---+-+-------------------------+-------------------------------+
  30. ;//
  31. ;// where
  32. ;//
  33. ;// Sev - is the severity code
  34. ;//
  35. ;// 00 - Success
  36. ;// 01 - Informational
  37. ;// 10 - Warning
  38. ;// 11 - Error
  39. ;//
  40. ;// C - is the Customer code flag
  41. ;//
  42. ;// Facility - is the facility code
  43. ;//
  44. ;// Code - is the facility's status code
  45. ;//
  46. ;
  47. MessageIdTypedef=NTSTATUS
  48. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  49. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  50. Warning=0x2:STATUS_SEVERITY_WARNING
  51. Error=0x3:STATUS_SEVERITY_ERROR
  52. )
  53. FacilityNames=(System=0x0
  54. RpcRuntime=0x2:FACILITY_RPC_RUNTIME
  55. RpcStubs=0x3:FACILITY_RPC_STUBS
  56. Io=0x4:FACILITY_IO_ERROR_CODE
  57. Pcmcia=0x6:FACILITY_PCMCIA_ERROR_CODE
  58. )
  59. MessageId=0x0001 Facility=Pcmcia Severity=Error SymbolicName=PCMCIA_NO_MEMORY_WINDOW
  60. Language=English
  61. A memory window for reading the PCCARD configuration could not be found. No PCMCIA PCCARDS were configured.
  62. .
  63. MessageId=0x0002 Facility=Pcmcia Severity=Error SymbolicName=PCMCIA_NO_IRQ
  64. Language=English
  65. An interrupt for a PCMCIA PCCARD could not be allocated.
  66. .
  67. MessageId=0x0003 Facility=Pcmcia Severity=Error SymbolicName=PCMCIA_NO_ATA
  68. Language=English
  69. The IDE compatible PCMCIA disk was not configured.
  70. .
  71. MessageId=0x0004 Facility=Pcmcia Severity=Error SymbolicName=PCMCIA_BAD_TUPLE_INFORMATION
  72. Language=English
  73. The PCMCIA tuple information for the PCCARD in socket %2 could not be parsed.
  74. .
  75. MessageId=0x0005 Facility=Pcmcia Severity=Informational SymbolicName=PCMCIA_NO_CONFIGURATION
  76. Language=English
  77. There is no configuration information for the PCCARD "%2".
  78. .
  79. MessageId=0x0006 Facility=Pcmcia Severity=Error SymbolicName=PCMCIA_BAD_IRQ_NETWORK
  80. Language=English
  81. The IRQ of %2 was selected for a network PCMCIA PCCARD. This IRQ is not supported for PCCARDs on this system. For network service, please change the configuration.
  82. .
  83. MessageId=0x0007 Facility=Pcmcia Severity=Error SymbolicName=PCMCIA_NO_CONTROLLER_IRQ
  84. Language=English
  85. No IRQ available for status change interrupts for PCMCIA controller: this controller will not be able to detect hot insertions/removals of PC-Cards.
  86. .
  87. MessageId=0x0008 Facility=Pcmcia Severity=Error SymbolicName=PCMCIA_NO_RESOURCES
  88. Language=English
  89. The PCMCIA controller failed to start because of unavailable system resources.
  90. .
  91. MessageId=0x0009 Facility=Pcmcia Severity=Error SymbolicName=PCMCIA_DEVICE_POWER_ERROR
  92. Language=English
  93. The PCMCIA controller encountered an error powering up the inserted device.
  94. .
  95. MessageId=0x000A Facility=Pcmcia Severity=Error SymbolicName=PCMCIA_DEVICE_ENUMERATION_ERROR
  96. Language=English
  97. The PCMCIA controller encountered an error reading the device configuration data.
  98. .