ntservmsg.h
上传用户:wsk323
上传日期:2007-01-05
资源大小:403k
文件大小:2k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. //
  2. //  Values are 32 bit values layed out as follows:
  3. //
  4. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  5. //   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
  6. //  +---+-+-+-----------------------+-------------------------------+
  7. //  |Sev|C|R|     Facility          |               Code            |
  8. //  +---+-+-+-----------------------+-------------------------------+
  9. //
  10. //  where
  11. //
  12. //      Sev - is the severity code
  13. //
  14. //          00 - Success
  15. //          01 - Informational
  16. //          10 - Warning
  17. //          11 - Error
  18. //
  19. //      C - is the Customer code flag
  20. //
  21. //      R - is a reserved bit
  22. //
  23. //      Facility - is the facility code
  24. //
  25. //      Code - is the facility's status code
  26. //
  27. //
  28. // Define the facility codes
  29. //
  30. //
  31. // Define the severity codes
  32. //
  33. //
  34. // MessageId: EVMSG_INSTALLED
  35. //
  36. // MessageText:
  37. //
  38. //  The %1 service was installed.
  39. //
  40. #define EVMSG_INSTALLED                  0x00000064L
  41. //
  42. // MessageId: EVMSG_REMOVED
  43. //
  44. // MessageText:
  45. //
  46. //  The %1 service was removed.
  47. //
  48. #define EVMSG_REMOVED                    0x00000065L
  49. //
  50. // MessageId: EVMSG_NOTREMOVED
  51. //
  52. // MessageText:
  53. //
  54. //  The %1 service could not be removed.
  55. //
  56. #define EVMSG_NOTREMOVED                 0x00000066L
  57. //
  58. // MessageId: EVMSG_CTRLHANDLERNOTINSTALLED
  59. //
  60. // MessageText:
  61. //
  62. //  The control handler could not be installed.
  63. //
  64. #define EVMSG_CTRLHANDLERNOTINSTALLED    0x00000067L
  65. //
  66. // MessageId: EVMSG_FAILEDINIT
  67. //
  68. // MessageText:
  69. //
  70. //  The initialization process failed.
  71. //
  72. #define EVMSG_FAILEDINIT                 0x00000068L
  73. //
  74. // MessageId: EVMSG_STARTED
  75. //
  76. // MessageText:
  77. //
  78. //  The service was started.
  79. //
  80. #define EVMSG_STARTED                    0x00000069L
  81. //
  82. // MessageId: EVMSG_BADREQUEST
  83. //
  84. // MessageText:
  85. //
  86. //  The service received an unsupported request.
  87. //
  88. #define EVMSG_BADREQUEST                 0x0000006AL
  89. //
  90. // MessageId: EVMSG_DEBUG
  91. //
  92. // MessageText:
  93. //
  94. //  Debug: %1
  95. //
  96. #define EVMSG_DEBUG                      0x0000006BL
  97. //
  98. // MessageId: EVMSG_STOPPED
  99. //
  100. // MessageText:
  101. //
  102. //  The service was stopped.
  103. //
  104. #define EVMSG_STOPPED                    0x0000006CL