Leaked source code of windows server 2003
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.

44 lines
890 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1996.
  5. //
  6. // File: stgprops.hxx
  7. //
  8. // Contents: Declaration for IPrivateStorage
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. //--------------------------------------------------------------------------
  15. #ifndef __STGPROPS_HXX__
  16. #define __STGPROPS_HXX__
  17. //+-------------------------------------------------------------------------
  18. //
  19. // Class: IPrivateStorage
  20. //
  21. // Purpose: Polymorphic but private calls on objects that implement
  22. // IStorage.
  23. //
  24. // Interface: GetStorage -- get the IStorage for the object
  25. //
  26. //
  27. //
  28. //
  29. //
  30. // Notes:
  31. //
  32. //--------------------------------------------------------------------------
  33. class IPrivateStorage
  34. {
  35. public:
  36. STDMETHOD_(IStorage *, GetStorage) (VOID) PURE;
  37. };
  38. #endif