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.
|
|
//////////////////////////////////////////////////////////////////////////////
//
// 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
|