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.

144 lines
2.7 KiB

  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
  105. //
  106. // MessageId: EVMSG_NAMEDPIPEOPERATION
  107. //
  108. // MessageText:
  109. //
  110. // The %1 pipe has an error:
  111. //
  112. #define EVMSG_NAMEDPIPEOPERATION 0x0000006DL
  113. //
  114. // MessageId: EVMSG_DISPLAYNAME
  115. //
  116. // MessageText:
  117. //
  118. // Portable media serial number%0
  119. //
  120. #define EVMSG_DISPLAYNAME 0x0000006EL
  121. //
  122. // MessageId: EVMSG_DESCRIPTION
  123. //
  124. // MessageText:
  125. //
  126. // Retrieves the serial number of any portable music player connected to your computer%0
  127. //
  128. #define EVMSG_DESCRIPTION 0x0000006FL