Windows2000/private/shell/ext/ftp/cowsite.cpp
2020-09-30 17:12:32 +02:00

28 lines
683 B
C++

#include "priv.h"
#include "cowsite.h"
// no default implementation for now.
// so far all clients do way more than this (e.g. deferred initialization)
// in their SetSite's.
HRESULT CObjectWithSite::SetSite(IUnknown * punkSite)
{
IUnknown_Set(&_punkSite, punkSite);
return S_OK;
}
HRESULT CObjectWithSite::GetSite(REFIID riid, void **ppvSite)
{
// e.g. iedisp.c!CIEFrameAutoProp::_SetValue calls us
TraceMsg(DM_WARNING, "cows.gs: E_NOTIMPL");
*ppvSite = NULL;
return E_NOTIMPL;
#if 0 // here 'tis if we ever decide we need it...
if (_punkSite)
return _punkSite->QueryInterface(riid, ppvSite);
*ppvSite = NULL;
return E_FAIL;
#endif
}