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

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1999-2000 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // IPostCfgManager.h
  7. //
  8. // Description:
  9. // IPostCfgManager interface definition.
  10. //
  11. // Maintained By:
  12. // Geoffrey Pease (GPease) 21-FEB-2000
  13. //
  14. //////////////////////////////////////////////////////////////////////////////
  15. #pragma once
  16. class
  17. IPostCfgManager : public IUnknown
  18. {
  19. public:
  20. //////////////////////////////////////////////////////////////////////////
  21. //
  22. // STDMETHOD
  23. // IPostCfgManager::CommitChanges(
  24. // IEnumClusCfgManagedResources * peccmrIn,
  25. // IClusCfgClusterInfo * pccciIn
  26. // )
  27. //
  28. // Description:
  29. // Tells the Post Configuration Manager to create the resource types,
  30. // groups and managed resources.
  31. //
  32. // Arguments:
  33. // peccmrIn
  34. // The enumerator of the managed resources to create.
  35. //
  36. // pccciIn
  37. // The cluster configuration information object.
  38. //
  39. // Return Values:
  40. // S_OK
  41. // The call succeeded.
  42. //
  43. // other HRESULTs
  44. // The call failed.
  45. //
  46. //////////////////////////////////////////////////////////////////////////
  47. STDMETHOD( CommitChanges )( IEnumClusCfgManagedResources * peccmrIn,
  48. IClusCfgClusterInfo * pccciIn
  49. ) PURE;
  50. }; // interface IPostCfgManager