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.

35 lines
641 B

  1. //***************************************************************************
  2. //
  3. // File:
  4. //
  5. // Module: MS SNMP Provider
  6. //
  7. // Purpose:
  8. //
  9. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  10. //
  11. //***************************************************************************
  12. #ifndef __SNMPLOG_H
  13. #define __SNMPLOG_H
  14. #include <provlog.h>
  15. #ifdef SNMPDEBUG_INIT
  16. class __declspec ( dllexport ) SnmpDebugLog : public ProvDebugLog
  17. #else
  18. class __declspec ( dllimport ) SnmpDebugLog : public ProvDebugLog
  19. #endif
  20. {
  21. public:
  22. static ProvDebugLog * s_SnmpDebugLog;
  23. } ;
  24. #endif __SNMPLOG_H