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.
69 lines
1.9 KiB
69 lines
1.9 KiB
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 1999-2001 Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
// ConnectionMgr.h
|
|
//
|
|
// Description:
|
|
// Connection Manager implementation.
|
|
//
|
|
// Maintained By:
|
|
// Galen Barbee (GalenB) 22-NOV-1999
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
// CConnectionManager
|
|
class CConnectionManager
|
|
: public IConnectionManager
|
|
{
|
|
private:
|
|
// IUnknown
|
|
LONG m_cRef;
|
|
|
|
private: // Methods
|
|
CConnectionManager( void );
|
|
~CConnectionManager( void );
|
|
STDMETHOD( HrInit )( void );
|
|
|
|
|
|
HRESULT
|
|
HrGetNodeConnection(
|
|
OBJECTCOOKIE cookieIn,
|
|
IConfigurationConnection ** ppccOut
|
|
);
|
|
HRESULT
|
|
HrGetClusterConnection(
|
|
OBJECTCOOKIE cookieIn,
|
|
IConfigurationConnection ** ppccOut
|
|
);
|
|
HRESULT
|
|
HrStoreConnection(
|
|
IConnectionInfo * pciIn,
|
|
IConfigurationConnection * pccIn,
|
|
IUnknown ** ppunkOut
|
|
);
|
|
|
|
HRESULT
|
|
HrGetConfigurationConnection(
|
|
OBJECTCOOKIE cookieIn,
|
|
IConnectionInfo * pciIn,
|
|
IUnknown ** ppunkOut
|
|
);
|
|
|
|
public: // Methods
|
|
static HRESULT S_HrCreateInstance( IUnknown ** ppunkOut );
|
|
|
|
// IUnknown
|
|
STDMETHOD( QueryInterface )( REFIID riidIn, LPVOID * ppvOut );
|
|
STDMETHOD_( ULONG, AddRef )( void );
|
|
STDMETHOD_( ULONG, Release )( void );
|
|
|
|
// IConnectionManager
|
|
STDMETHOD( GetConnectionToObject )( OBJECTCOOKIE cookieIn,
|
|
IUnknown ** ppunkOut
|
|
);
|
|
|
|
}; //*** class CConnectionManager
|