windows-nt/Source/XPSP1/NT/base/cluster/mgmt/cluscfg/postcfg/iprivatepostcfgresource.h
2020-09-26 16:20:57 +08:00

48 lines
1.2 KiB
C++

//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2000 Microsoft Corporation
//
// Module Name:
// IPrivatePostCfgResource.h
//
// Description:
// IPrivatePostCfgResource interface definition.
//
// Maintained By:
// Geoffrey Pease (GPease) 15-JUN-2000
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
class
IPrivatePostCfgResource
: public IUnknown
{
public:
//////////////////////////////////////////////////////////////////////////
//
// PRIVATE
// STDMETHOD
// IPrivatePostCfgResource::SetEntry(
// CResourceEntry * presentryIn
// )
//
// Description:
// Tells the resource service which entry it is to be modifying.
//
// Arguments:
// presentryIn
// The entry in which the resource service is going to modifying.
//
// Return Values:
// S_OK
// The call succeeded.
//
// other HRESULTs
// The call failed.
//
//////////////////////////////////////////////////////////////////////////
STDMETHOD( SetEntry )( CResourceEntry * presentryIn ) PURE;
}; // class IPrivatePostCfgResource