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.

50 lines
979 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: I P E R S I S T . C P P
  7. //
  8. // Contents: IPersist implementation fopr CConnectionFolder
  9. //
  10. // Notes:
  11. //
  12. // Author: jeffspr 22 Sep 1997
  13. //
  14. //----------------------------------------------------------------------------
  15. #include "pch.h"
  16. #pragma hdrstop
  17. #include "foldinc.h" // Standard shell\folder includes
  18. //+---------------------------------------------------------------------------
  19. //
  20. // Member: CJobFolder::GetClassID
  21. //
  22. // Purpose: IPersist::GetClassID implementation for CConnectionFolder
  23. //
  24. // Arguments:
  25. // lpClassID []
  26. //
  27. // Returns:
  28. //
  29. // Author: jeffspr 22 Sep 1997
  30. //
  31. // Notes:
  32. //
  33. STDMETHODIMP
  34. CConnectionFolder::GetClassID(
  35. LPCLSID lpClassID)
  36. {
  37. TraceFileFunc(ttidShellFolderIface);
  38. *lpClassID = CLSID_ConnectionFolder;
  39. return S_OK;
  40. }