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.

65 lines
1.5 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Copyright (C) 1992, 1993 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; ntiologc.h
  8. ;
  9. ;Abstract:
  10. ;
  11. ; Constant definitions for the I/O error code log values.
  12. ;
  13. ;Author:
  14. ;
  15. ; Tony Ercolano (Tonye) 12-23-1992
  16. ;
  17. ;Revision History:
  18. ;
  19. ;--*/
  20. ;
  21. ;#ifndef _pciidex_mc_
  22. ;#define _pciidex_mc_
  23. ;
  24. ;//
  25. ;// Status values are 32 bit values layed out as follows:
  26. ;//
  27. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  28. ;// 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
  29. ;// +---+-+-------------------------+-------------------------------+
  30. ;// |Sev|C| Facility | Code |
  31. ;// +---+-+-------------------------+-------------------------------+
  32. ;//
  33. ;// where
  34. ;//
  35. ;// Sev - is the severity code
  36. ;//
  37. ;// 00 - Success
  38. ;// 01 - Informational
  39. ;// 10 - Warning
  40. ;// 11 - Error
  41. ;//
  42. ;// C - is the Customer code flag
  43. ;//
  44. ;// Facility - is the facility code
  45. ;//
  46. ;// Code - is the facility's status code
  47. ;//
  48. ;
  49. MessageIdTypedef=NTSTATUS
  50. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  51. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  52. Warning=0x2:STATUS_SEVERITY_WARNING
  53. Error=0x3:STATUS_SEVERITY_ERROR
  54. )
  55. FacilityNames=(pciidex=0x0)
  56. MessageId=0x0001 Facility=pciidex Severity=Success SymbolicName=PCIIDEX_IDE_CHANNEL
  57. Language=English
  58. IDE channel
  59. .
  60. ;#endif /* _pciidex_mc_ */