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.
 
 
 
 
 
 

51 lines
1.4 KiB

//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1997.
//
// File: C O N M A N I . H
//
// Contents: Class manager for Inbound connections.
//
// Notes:
//
// Author: shaunco 12 Nov 1997
//
//----------------------------------------------------------------------------
#pragma once
#include "nmbase.h"
#include "nmres.h"
class ATL_NO_VTABLE CInboundConnectionManager :
public CComObjectRootEx <CComMultiThreadModel>,
public CComCoClass <CInboundConnectionManager,
&CLSID_WanConnectionManager>,
public IConnectionPointContainerImpl <CInboundConnectionManager>,
public INetConnectionManager
{
public:
CInboundConnectionManager() throw()
{
}
DECLARE_CLASSFACTORY_SINGLETON(CInboundConnectionManager)
DECLARE_REGISTRY_RESOURCEID(IDR_INBOUND_CONMAN)
BEGIN_COM_MAP(CInboundConnectionManager)
COM_INTERFACE_ENTRY(INetConnectionManager)
COM_INTERFACE_ENTRY_IMPL(IConnectionPointContainer)
END_COM_MAP()
BEGIN_CONNECTION_POINT_MAP(CInboundConnectionManager)
END_CONNECTION_POINT_MAP()
// INetConnectionManager
STDMETHOD (EnumConnections) (
IN NETCONMGR_ENUM_FLAGS Flags,
OUT IEnumNetConnection** ppEnum);
public:
};