windows-nt/Source/XPSP1/NT/net/upnp/upnpui/dll/ipersist.cpp

44 lines
882 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1997.
//
// File: I P E R S I S T . C P P
//
// Contents: IPersist implementation fopr CUPnPDeviceFolder
//
// Notes:
//
// Author: jeffspr 22 Sep 1997
//
//----------------------------------------------------------------------------
#include "pch.h"
#pragma hdrstop
//+---------------------------------------------------------------------------
//
// Member: CUPnPDeviceFolder::GetClassID
//
// Purpose: IPersist::GetClassID implementation for CUPnPDeviceFolder
//
// Arguments:
// lpClassID []
//
// Returns:
//
// Author: jeffspr 22 Sep 1997
//
// Notes:
//
STDMETHODIMP
CUPnPDeviceFolder::GetClassID(
LPCLSID lpClassID)
{
*lpClassID = CLSID_UPnPDeviceFolder;
return S_OK;
}