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
35 lines
641 B
//***************************************************************************
|
|
|
|
//
|
|
|
|
// File:
|
|
|
|
//
|
|
|
|
// Module: MS SNMP Provider
|
|
|
|
//
|
|
|
|
// Purpose:
|
|
|
|
//
|
|
|
|
// Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
|
|
//
|
|
//***************************************************************************
|
|
|
|
#ifndef __SNMPLOG_H
|
|
#define __SNMPLOG_H
|
|
#include <provlog.h>
|
|
|
|
#ifdef SNMPDEBUG_INIT
|
|
class __declspec ( dllexport ) SnmpDebugLog : public ProvDebugLog
|
|
#else
|
|
class __declspec ( dllimport ) SnmpDebugLog : public ProvDebugLog
|
|
#endif
|
|
{
|
|
public:
|
|
static ProvDebugLog * s_SnmpDebugLog;
|
|
} ;
|
|
|
|
#endif __SNMPLOG_H
|