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.

86 lines
2.2 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 _PARLOG_
  22. ;#define _PARLOG_
  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=(System=0x0
  56. RpcRuntime=0x2:FACILITY_RPC_RUNTIME
  57. RpcStubs=0x3:FACILITY_RPC_STUBS
  58. Io=0x4:FACILITY_IO_ERROR_CODE
  59. Parallel=0x7:FACILITY_PARALLEL_ERROR_CODE
  60. )
  61. MessageId=0x0003 Facility=Parallel Severity=Error SymbolicName=PAR_INSUFFICIENT_RESOURCES
  62. Language=English
  63. Not enough memory was available to allocate internal storage needed for the device %1.
  64. .
  65. MessageId=0x0010 Facility=Parallel Severity=Warning SymbolicName=PAR_NO_SYMLINK_CREATED
  66. Language=English
  67. Unable to create the symbolic link for %1.
  68. .
  69. MessageId=0x0011 Facility=Parallel Severity=Warning SymbolicName=PAR_NO_DEVICE_MAP_CREATED
  70. Language=English
  71. Unable to create the device map entry for %1.
  72. .
  73. MessageId=0x0015 Facility=Parallel Severity=Error SymbolicName=PAR_CANT_FIND_PORT_DRIVER
  74. Language=English
  75. Unable to get device object pointer for port object.
  76. .
  77. ;#endif /* _NTIOLOGC_ */