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.

43 lines
882 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 CUPnPDeviceFolder
  9. //
  10. // Notes:
  11. //
  12. // Author: jeffspr 22 Sep 1997
  13. //
  14. //----------------------------------------------------------------------------
  15. #include "pch.h"
  16. #pragma hdrstop
  17. //+---------------------------------------------------------------------------
  18. //
  19. // Member: CUPnPDeviceFolder::GetClassID
  20. //
  21. // Purpose: IPersist::GetClassID implementation for CUPnPDeviceFolder
  22. //
  23. // Arguments:
  24. // lpClassID []
  25. //
  26. // Returns:
  27. //
  28. // Author: jeffspr 22 Sep 1997
  29. //
  30. // Notes:
  31. //
  32. STDMETHODIMP
  33. CUPnPDeviceFolder::GetClassID(
  34. LPCLSID lpClassID)
  35. {
  36. *lpClassID = CLSID_UPnPDeviceFolder;
  37. return S_OK;
  38. }