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.

76 lines
1.8 KiB

  1. ;
  2. ;#ifndef _SERLOG_
  3. ;#define _SERLOG_
  4. ;
  5. ;//
  6. ;// Status values are 32 bit values layed out as follows:
  7. ;//
  8. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  9. ;// 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
  10. ;// +---+-+-------------------------+-------------------------------+
  11. ;// |Sev|C| Facility | Code |
  12. ;// +---+-+-------------------------+-------------------------------+
  13. ;//
  14. ;// where
  15. ;//
  16. ;// Sev - is the severity code
  17. ;//
  18. ;// 00 - Success
  19. ;// 01 - Informational
  20. ;// 10 - Warning
  21. ;// 11 - Error
  22. ;//
  23. ;// C - is the Customer code flag
  24. ;//
  25. ;// Facility - is the facility code
  26. ;//
  27. ;// Code - is the facility's status code
  28. ;//
  29. ;
  30. MessageIdTypedef=NTSTATUS
  31. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  32. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  33. Warning=0x2:STATUS_SEVERITY_WARNING
  34. Error=0x3:STATUS_SEVERITY_ERROR
  35. )
  36. FacilityNames=(System=0x0
  37. Io=0x4:FACILITY_IO_ERROR_CODE
  38. )
  39. MessageId=0x0001
  40. Facility=Io
  41. Severity=Error
  42. SymbolicName=SER_INSUFFICIENT_RESOURCES
  43. Language=English
  44. Not enough memory was available to allocate internal storage needed for the device %1.
  45. .
  46. MessageId=0x0002
  47. Facility=Io
  48. Severity=Warning
  49. SymbolicName=SER_NO_SYMLINK_CREATED
  50. Language=English
  51. Unable to create the symbolic link for %1.
  52. .
  53. MessageId=0x0003
  54. Facility=Io
  55. Severity=Warning
  56. SymbolicName=SER_NO_DEVICE_MAP_CREATED
  57. Language=English
  58. Unable to create the device map entry for %1.
  59. .
  60. MessageId=0x0004
  61. Facility=Io
  62. Severity=Error
  63. SymbolicName=SER_CANT_FIND_PORT_DRIVER
  64. Language=English
  65. Unable to get device object pointer for port object.
  66. .
  67. ;#endif