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.

25 lines
757 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (c) Microsoft Corporation. All rights reserved.
  5. //
  6. // File: propctr.idl
  7. //
  8. // Contents: IPropsetContainer
  9. //
  10. // History: 09-Aug-94 IraS Created
  11. //
  12. //----------------------------------------------------------------------------
  13. #include "idlmulti.h"
  14. REMOTED_INTERFACE(b4ffae60-a7ca-11cd-b58b-00006b829156)
  15. interface IPropertySetContainer : IUnknown
  16. {
  17. HRESULT GetPropset([in] REFGUID rguidName,
  18. [in] REFIID riid,
  19. [out, iid_is(riid)] IUnknown ** ppvObj);
  20. HRESULT AddPropset([in] IPersist * pPropset);
  21. HRESULT DeletePropset([in] REFGUID rguidName);
  22. }