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

//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 1999-2001 Microsoft Corporation
//
// Module Name:
// ConnectionInfo.h
//
// Description:
// CConnectionInfo implementation.
//
// Maintained By:
// Galen Barbee (GalenB) 22-NOV-1999
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
// CConnectionInfo
class CConnectionInfo
: public IConnectionInfo
{
private:
// IUnknown
LONG m_cRef;
// IConnectionInfo
IConfigurationConnection * m_pcc;
OBJECTCOOKIE m_cookieParent;
private: // Methods
CConnectionInfo( void );
~CConnectionInfo( void );
STDMETHOD( HrInit )( OBJECTCOOKIE pcookieParentIn );
public: // Methods
static HRESULT
S_HrCreateInstance( IUnknown ** ppunkOut,
OBJECTCOOKIE pcookieParentIn
);
// IUnknown
STDMETHOD( QueryInterface )( REFIID riidIn, LPVOID * ppvOut );
STDMETHOD_( ULONG, AddRef )( void );
STDMETHOD_( ULONG, Release )( void );
// IConnectionInfo
STDMETHOD( GetConnection )( IConfigurationConnection ** pccOut );
STDMETHOD( SetConnection )( IConfigurationConnection * pccIn );
STDMETHOD( GetParent )( OBJECTCOOKIE * pcookieOut );
}; //*** class CConnectionInfo