Source code of Windows XP (NT5)
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.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. ; scrcp8t.mc
  8. ;
  9. ;Abstract:
  10. ;
  11. ; Constant definitions for the I/O error code log values.
  12. ;
  13. ;Revision History:
  14. ;
  15. ;--*/
  16. ;
  17. ;
  18. ;//
  19. ;// Status values are 32 bit values layed out as follows:
  20. ;//
  21. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  22. ;// 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
  23. ;// +---+-+-------------------------+-------------------------------+
  24. ;// |Sev|C| Facility | Code |
  25. ;// +---+-+-------------------------+-------------------------------+
  26. ;//
  27. ;// where
  28. ;//
  29. ;// Sev - is the severity code
  30. ;//
  31. ;// 00 - Success
  32. ;// 01 - Informational
  33. ;// 10 - Warning
  34. ;// 11 - Error
  35. ;//
  36. ;// C - is the Customer code flag
  37. ;//
  38. ;// Facility - is the facility code
  39. ;//
  40. ;// Code - is the facility's status code
  41. ;//
  42. ;
  43. MessageIdTypedef=NTSTATUS
  44. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  45. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  46. Warning=0x2:STATUS_SEVERITY_WARNING
  47. Error=0x3:STATUS_SEVERITY_ERROR
  48. )
  49. FacilityNames=(System=0x0
  50. RpcRuntime=0x2:FACILITY_RPC_RUNTIME
  51. RpcStubs=0x3:FACILITY_RPC_STUBS
  52. Io=0x4:FACILITY_IO_ERROR_CODE
  53. Fips=0x10:FACILITY_FIPS
  54. )
  55. MessageId=0x0001 Facility=Fips Severity=Error SymbolicName=FIPS_MAC_INCORRECT
  56. Language=English
  57. The fips driver can't load. The driver failed the MAC self test.
  58. .
  59. MessageId=0x0002 Facility=Fips Severity=Error SymbolicName=FIPS_SELF_TEST_FAILURE
  60. Language=English
  61. The fips driver can't load. The driver failed the algorithm self test.
  62. .