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.
79 lines
2.5 KiB
79 lines
2.5 KiB
/////////////////////////////////////////////////////////////////////////////
|
|
// FILE : InboundRouting.h //
|
|
// //
|
|
// DESCRIPTION : Header file for CFaxInboundRoutingNode class //
|
|
// //
|
|
// AUTHOR : yossg //
|
|
// //
|
|
// HISTORY : //
|
|
// Sep 29 1999 yossg create //
|
|
// //
|
|
// Copyright (C) 1999 Microsoft Corporation All Rights Reserved //
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef H_FAXINBOUNDROUTINGNODE_H
|
|
#define H_FAXINBOUNDROUTINGNODE_H
|
|
|
|
|
|
#include "snapin.h"
|
|
//#include "snpnode.h"
|
|
#include "snpnscp.h"
|
|
|
|
|
|
class CFaxServerNode;
|
|
|
|
class CFaxInboundRoutingNode : public CNodeWithScopeChildrenList<CFaxInboundRoutingNode, FALSE>
|
|
{
|
|
public:
|
|
BEGIN_SNAPINCOMMAND_MAP(CFaxInboundRoutingNode, FALSE)
|
|
END_SNAPINCOMMAND_MAP()
|
|
|
|
BEGIN_SNAPINTOOLBARID_MAP(CFaxInboundRoutingNode)
|
|
END_SNAPINTOOLBARID_MAP()
|
|
|
|
SNAPINMENUID(IDR_SNAPIN_MENU)
|
|
|
|
CFaxInboundRoutingNode(CSnapInItem * pParentNode, CSnapin * pComponentData) :
|
|
CNodeWithScopeChildrenList<CFaxInboundRoutingNode, FALSE>(pParentNode, pComponentData )
|
|
{
|
|
}
|
|
|
|
~CFaxInboundRoutingNode()
|
|
{
|
|
}
|
|
|
|
virtual HRESULT PopulateScopeChildrenList();
|
|
|
|
virtual HRESULT InsertColumns(IHeaderCtrl* pHeaderCtrl);
|
|
|
|
virtual HRESULT SetVerbs(IConsoleVerb *pConsoleVerb);
|
|
|
|
// virtual
|
|
HRESULT OnRefresh(LPARAM arg,
|
|
LPARAM param,
|
|
IComponentData *pComponentData,
|
|
IComponent * pComponent,
|
|
DATA_OBJECT_TYPES type);
|
|
|
|
void InitParentNode(CFaxServerNode *pParentNode)
|
|
{
|
|
m_pParentNode = pParentNode;
|
|
}
|
|
|
|
HRESULT InitDisplayName();
|
|
|
|
HRESULT OnShowContextHelp(
|
|
IDisplayHelp* pDisplayHelp, LPOLESTR helpFile);
|
|
|
|
private:
|
|
|
|
static CColumnsInfo m_ColsInfo;
|
|
|
|
CFaxServerNode * m_pParentNode;
|
|
};
|
|
|
|
typedef CNodeWithScopeChildrenList<CFaxInboundRoutingNode, FALSE>
|
|
CBaseFaxInboundRoutingNode;
|
|
|
|
|
|
#endif //H_FAXINBOUNDROUTINGNODE_H
|