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.

142 lines
4.9 KiB

  1. ;/*++
  2. ;
  3. ;Copyright (c) 1992-1997 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; snmpevts.h
  8. ;
  9. ;Abstract:
  10. ;
  11. ; Eventlog message definitions for the SNMP Service.
  12. ;
  13. ;Environment:
  14. ;
  15. ; User Mode - Win32
  16. ;
  17. ;Revision History:
  18. ;
  19. ;
  20. ;--*/
  21. ;
  22. ;#ifndef _SNMPEVTS_
  23. ;#define _SNMPEVTS_
  24. ;
  25. ;/////////////////////////////////////////////////////////////////////////
  26. ;// //
  27. ;// Public procedures //
  28. ;// //
  29. ;/////////////////////////////////////////////////////////////////////////
  30. ;
  31. ;VOID
  32. ;SNMP_FUNC_TYPE
  33. ;ReportSnmpEvent(
  34. ; DWORD nMsgId,
  35. ; DWORD cSubStrings,
  36. ; LPTSTR *ppSubStrings,
  37. ; DWORD nErrorCode
  38. ; );
  39. MessageIdTypedef=DWORD
  40. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  41. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  42. Warning=0x2:STATUS_SEVERITY_WARNING
  43. Error=0x3:STATUS_SEVERITY_ERROR
  44. )
  45. FacilityNames=( System=0x0FF
  46. Appication=0xFFF )
  47. ;
  48. ;/////////////////////////////////////////////////////////////////////////
  49. ;// //
  50. ;// SNMP events 1-1100 are informational //
  51. ;// //
  52. ;/////////////////////////////////////////////////////////////////////////
  53. ;
  54. MessageId=1001 Severity=Informational Facility=System SymbolicName=SNMP_EVENT_SERVICE_STARTED
  55. Language=English
  56. The SNMP Service has started successfully.
  57. .
  58. MessageId=1003 Severity=Informational Facility=System SymbolicName=SNMP_EVENT_SERVICE_STOPPED
  59. Language=English
  60. The SNMP Service has stopped successfully.
  61. .
  62. MessageId=1004 Severity=Informational Facility=System SymbolicName=SNMP_EVENT_CONFIGURATION_UPDATED
  63. Language=English
  64. The SNMP Service configuration has been updated successfully.
  65. .
  66. ;
  67. ;/////////////////////////////////////////////////////////////////////////
  68. ;// //
  69. ;// SNMP events 1100-1499 are warnings //
  70. ;// //
  71. ;/////////////////////////////////////////////////////////////////////////
  72. ;
  73. MessageId=1100 Severity=Warning Facility=System SymbolicName=SNMP_EVENT_NAME_RESOLUTION_FAILURE
  74. Language=English
  75. The SNMP Service is ignoring the manager %1 because its name could not be resolved.
  76. .
  77. MessageId= Severity=Warning Facility=System SymbolicName=SNMP_EVENT_INVALID_EXTENSION_AGENT_KEY
  78. Language=English
  79. The SNMP Service is ignoring extension agent key %1 because it is missing or misconfigured.
  80. .
  81. MessageId= Severity=Warning Facility=System SymbolicName=SNMP_EVENT_INVALID_EXTENSION_AGENT_DLL
  82. Language=English
  83. The SNMP Service is ignoring extension agent dll %1 because it is missing or misconfigured.
  84. .
  85. MessageId= Severity=Warning Facility=System SymbolicName=SNMP_EVENT_INVALID_ENTERPRISEOID
  86. Language=English
  87. The SNMP Service has reset the registry parameter sysObjectID to a default value.
  88. This is caused either by an invalid type or by an invalid string format of the registry value.
  89. .
  90. ;/////////////////////////////////////////////////////////////////////////
  91. ;// //
  92. ;// SNMP events 1500-1998 are warnings //
  93. ;// //
  94. ;/////////////////////////////////////////////////////////////////////////
  95. ;
  96. MessageId=1500 Severity=Error Facility=System SymbolicName=SNMP_EVENT_INVALID_REGISTRY_KEY
  97. Language=English
  98. The SNMP Service encountered an error while accessing the registry key %1.
  99. .
  100. MessageId= Severity=Error Facility=System SymbolicName=SNMP_EVNT_INCOMING_TRANSPORT_CLOSED
  101. Language=English
  102. The SNMP Service encountered an error while setting up the incoming transports.\n
  103. The %1 transport has been dropped out.
  104. .
  105. MessageId= Severity=Error Facility=System SymbolicName=SNMP_EVENT_REGNOTIFY_THREAD_FAILED
  106. Language=English
  107. The SNMP Service encountered an error while registering for registry notifications.\n
  108. Changes in the service's configuration will not be considered.
  109. .
  110. ;
  111. ;/////////////////////////////////////////////////////////////////////////
  112. ;// //
  113. ;// SNMP events 1999 is used to display debug messages (obsolete) //
  114. ;// //
  115. ;/////////////////////////////////////////////////////////////////////////
  116. ;
  117. MessageId=1999 Severity=Informational Facility=System SymbolicName=SNMP_EVENT_DEBUG_TRACE
  118. Language=English
  119. %1
  120. .
  121. ;
  122. ;#endif // _SNMPEVTS_
  123. ;