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.

122 lines
3.8 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Copyright (c) 1993 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; message.mc
  8. ;
  9. ;Abstract:
  10. ;
  11. ; Constant definitions for the I/O error code log values.
  12. ;
  13. ;Revision History:
  14. ;
  15. ;--*/
  16. ;
  17. ;#ifndef _PNPISALOG_
  18. ;#define _PNPISALOG_
  19. ;
  20. ;//
  21. ;// Status values are 32 bit values layed out as follows:
  22. ;//
  23. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  24. ;// 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
  25. ;// +---+-+-------------------------+-------------------------------+
  26. ;// |Sev|C| Facility | Code |
  27. ;// +---+-+-------------------------+-------------------------------+
  28. ;//
  29. ;// where
  30. ;//
  31. ;// Sev - is the severity code
  32. ;//
  33. ;// 00 - Success
  34. ;// 01 - Informational
  35. ;// 10 - Warning
  36. ;// 11 - Error
  37. ;//
  38. ;// C - is the Customer code flag
  39. ;//
  40. ;// Facility - is the facility code
  41. ;//
  42. ;// Code - is the facility's status code
  43. ;//
  44. ;
  45. MessageIdTypedef=NTSTATUS
  46. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  47. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  48. Warning=0x2:STATUS_SEVERITY_WARNING
  49. Error=0x3:STATUS_SEVERITY_ERROR
  50. )
  51. FacilityNames=(System=0x0
  52. RpcRuntime=0x2:FACILITY_RPC_RUNTIME
  53. RpcStubs=0x3:FACILITY_RPC_STUBS
  54. Io=0x4:FACILITY_IO_ERROR_CODE
  55. pnpisa=0x5:FACILITY_PNPISA_ERROR_CODE
  56. )
  57. MessageId=0x0001 Facility=pnpisa Severity=Error SymbolicName=PNPISA_INSUFFICIENT_PORT_RESOURCES
  58. Language=English
  59. Not enough port resource was available to allocate to the read data port.
  60. .
  61. MessageId=0x0002 Facility=pnpisa Severity=Error SymbolicName=PNPISA_INSUFFICIENT_POOL
  62. Language=English
  63. Not enough paged pool was available to allocate internal storage for pnpisa driver.
  64. .
  65. MessageId=0x0003 Facility=pnpisa Severity=Error SymbolicName=PNPISA_REGISTER_NOT_MAPPED
  66. Language=English
  67. The raw port address could not be translated to something the memory management system understands.
  68. .
  69. MessageId=0x0004 Facility=pnpisa Severity=Error SymbolicName=PNPISA_OPEN_CURRENTCONTROLSET_ENUM_FAILED
  70. Language=English
  71. The driver can not open registry enum key under current control set.
  72. .
  73. MessageId=0x0005 Facility=pnpisa Severity=Error SymbolicName=PNPISA_OPEN_ENUM_PNPISA_FAILED
  74. Language=English
  75. The driver can not open registry ISAPNP key under ENUM.
  76. .
  77. MessageId=0x0006 Facility=pnpisa Severity=Error SymbolicName=PNPISA_OPEN_MADEUP_PNPISA_FAILED
  78. Language=English
  79. The driver can not open madeup ISAPNP key: %2.
  80. .
  81. MessageId=0x0007 Facility=pnpisa Severity=Error SymbolicName=PNPISA_OPEN_PNPISA_DEVICE_KEY_FAILED
  82. Language=English
  83. The driver can not open/create %2 device key.
  84. .
  85. MessageId=0x0008 Facility=pnpisa Severity=Error SymbolicName=PNPISA_OPEN_PNPISA_DEVICE_INSTANCE_FAILED
  86. Language=English
  87. The driver can not open/create %2 device instance key.
  88. .
  89. MessageId=0x0009 Facility=pnpisa Severity=Error SymbolicName=PNPISA_OPEN_CURRENTCONTROLSET_SERVICE_FAILED
  90. Language=English
  91. The driver can not open Services key under CurrentControlSet.
  92. .
  93. MessageId=0x000A Facility=pnpisa Severity=Error SymbolicName=PNPISA_OPEN_CURRENTCONTROLSET_SERVICE_DRIVER_FAILED
  94. Language=English
  95. The driver can not open %2 key under Services key.
  96. .
  97. MessageId=0x000B Facility=pnpisa Severity=Error SymbolicName=PNPISA_NO_MATCHED_MEMORY_INFORMATION
  98. Language=English
  99. The driver can not find memory information for the memory address specified.
  100. .
  101. MessageId=0x000C Facility=pnpisa Severity=Error SymbolicName=PNPISA_NO_MATCHED_PORT_INFORMATION
  102. Language=English
  103. The driver can not find port information for the port address specified.
  104. .
  105. ;#endif /* _PNPISALOG_ */