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.

52 lines
1.1 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1995 - 1995.
  5. //
  6. // File: pfolder.hxx
  7. //
  8. // Contents: Declaration of CSharesPF, an implementation of IPersistFolder
  9. //
  10. // History: 13-Dec-95 BruceFo Created
  11. //
  12. //----------------------------------------------------------------------------
  13. #ifndef __PFOLDER_HXX__
  14. #define __PFOLDER_HXX__
  15. //////////////////////////////////////////////////////////////////////////////
  16. class CSharesPF : public IPersistFolder
  17. {
  18. public:
  19. CSharesPF() {}
  20. ~CSharesPF() {}
  21. //
  22. // IUnknown methods
  23. //
  24. STDMETHOD(QueryInterface)(REFIID riid, LPVOID* ppvObj);
  25. STDMETHOD_(ULONG,AddRef)();
  26. STDMETHOD_(ULONG,Release)();
  27. //
  28. // IPersist methods
  29. //
  30. STDMETHOD(GetClassID)(
  31. LPCLSID lpClassID
  32. );
  33. //
  34. // IPersistFolder methods
  35. //
  36. STDMETHOD(Initialize)(
  37. LPCITEMIDLIST pidl
  38. );
  39. };
  40. #endif // __PFOLDER_HXX__