Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

53 lines
1.5 KiB

//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 1999-2000 Microsoft Corporation
//
// Module Name:
// IPostCfgManager.h
//
// Description:
// IPostCfgManager interface definition.
//
// Maintained By:
// Geoffrey Pease (GPease) 21-FEB-2000
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
class
IPostCfgManager : public IUnknown
{
public:
//////////////////////////////////////////////////////////////////////////
//
// STDMETHOD
// IPostCfgManager::CommitChanges(
// IEnumClusCfgManagedResources * peccmrIn,
// IClusCfgClusterInfo * pccciIn
// )
//
// Description:
// Tells the Post Configuration Manager to create the resource types,
// groups and managed resources.
//
// Arguments:
// peccmrIn
// The enumerator of the managed resources to create.
//
// pccciIn
// The cluster configuration information object.
//
// Return Values:
// S_OK
// The call succeeded.
//
// other HRESULTs
// The call failed.
//
//////////////////////////////////////////////////////////////////////////
STDMETHOD( CommitChanges )( IEnumClusCfgManagedResources * peccmrIn,
IClusCfgClusterInfo * pccciIn
) PURE;
}; // interface IPostCfgManager