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.
94 lines
2.9 KiB
94 lines
2.9 KiB
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 2000 Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
// CClusCfgCallback.h
|
|
//
|
|
// Description:
|
|
// Header file for CClusCfgCallback.cpp
|
|
//
|
|
// Maintained By:
|
|
// Vij Vasu (Vvasu) 03-MAR-2000
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Include Files
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For the IClusCfgCallback interface
|
|
#include "ClusCfgServer.h"
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//++
|
|
//
|
|
// class CClusCfgCallback
|
|
//
|
|
// Description:
|
|
// This class implements the IClusCfgBaseCluster interface.
|
|
//
|
|
//--
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
class CClusCfgCallback
|
|
: public IClusCfgCallback
|
|
{
|
|
public:
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// Constructor and Destructor
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Constructor
|
|
CClusCfgCallback( void );
|
|
|
|
// Destructor
|
|
~CClusCfgCallback( void );
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// IUnknown methods
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
STDMETHOD( QueryInterface )( REFIID riid, void ** ppvObject );
|
|
STDMETHOD_( ULONG, AddRef )( void );
|
|
STDMETHOD_( ULONG, Release )( void );
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// IClusCfgCallback methods
|
|
//////////////////////////////////////////////////////////////////////////
|
|
STDMETHOD( SendStatusReport )(
|
|
BSTR bstrNodeNameIn,
|
|
CLSID clsidTaskMajorIn,
|
|
CLSID clsidTaskMinorIn,
|
|
ULONG ulMinIn,
|
|
ULONG ulMaxIn,
|
|
ULONG ulCurrentIn,
|
|
HRESULT hrStatusIn,
|
|
BSTR bstrDescriptionIn,
|
|
FILETIME * pftTimeIn,
|
|
BSTR bstrReferenceIn
|
|
);
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// Other public methods
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Create an instance of this class.
|
|
static HRESULT
|
|
S_HrCreateInstance( IUnknown ** ppunkOut );
|
|
|
|
private:
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// Private data
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Reference count for this object.
|
|
LONG m_cRef;
|
|
|
|
}; //*** class CClusCfgCallback
|