NTServiceEventLogMsg.h
上传用户:chenchao
上传日期:2007-01-09
资源大小:22k
文件大小:2k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1998 Telic Software International B.V.
  4. //
  5. // Module Name:
  6. //
  7. //    NTServiceEventLogMsg.h
  8. //
  9. // Abstract:
  10. //
  11. //    Messages for Event Logging for the service
  12. //
  13. //
  14. //Notes:
  15. //    DO NOT EDIT THIS FILE BY HAND!
  16. //
  17. //    This file is GENERATED by the MC tool from the NTServiceEventLogMsg.mc file.
  18. //
  19. //////////////////////////////////////////////////////////////////////////
  20. #ifndef __NTSERVICEEVENTLOGMSG_H__
  21. #define __NTSERVICEEVENTLOGMSG_H__
  22. //
  23. //  Values are 32 bit values layed out as follows:
  24. //
  25. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  26. //   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
  27. //  +---+-+-+-----------------------+-------------------------------+
  28. //  |Sev|C|R|     Facility          |               Code            |
  29. //  +---+-+-+-----------------------+-------------------------------+
  30. //
  31. //  where
  32. //
  33. //      Sev - is the severity code
  34. //
  35. //          00 - Success
  36. //          01 - Informational
  37. //          10 - Warning
  38. //          11 - Error
  39. //
  40. //      C - is the Customer code flag
  41. //
  42. //      R - is a reserved bit
  43. //
  44. //      Facility - is the facility code
  45. //
  46. //      Code - is the facility's status code
  47. //
  48. //
  49. // Define the facility codes
  50. //
  51. //
  52. // Define the severity codes
  53. //
  54. #define STATUS_SEVERITY_WARNING          0x2
  55. #define STATUS_SEVERITY_SUCCESS          0x0
  56. #define STATUS_SEVERITY_INFORMATIONAL    0x1
  57. #define STATUS_SEVERITY_ERROR            0x3
  58. //
  59. // MessageId: MSG_INFO_1
  60. //
  61. // MessageText:
  62. //
  63. //  %1
  64. //
  65. #define MSG_INFO_1                       ((DWORD)0x40000000L)
  66. //
  67. // MessageId: MSG_WARNING_1
  68. //
  69. // MessageText:
  70. //
  71. //  %1
  72. //
  73. #define MSG_WARNING_1                    ((DWORD)0x80000001L)
  74. //
  75. // MessageId: MSG_ERROR_1
  76. //
  77. // MessageText:
  78. //
  79. //  %1
  80. //
  81. #define MSG_ERROR_1                      ((DWORD)0xC0000002L)
  82. //
  83. // MessageId: MSG_SUCCESS_1
  84. //
  85. // MessageText:
  86. //
  87. //  %1
  88. //
  89. #define MSG_SUCCESS_1                    ((DWORD)0x00000003L)
  90. #endif // __NTSERVICEEVENTLOGMSG_H__