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.
20 lines
495 B
20 lines
495 B
#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)
|
|
{
|
|
if (_punkSite)
|
|
return _punkSite->QueryInterface(riid, ppvSite);
|
|
|
|
*ppvSite = NULL;
|
|
return E_FAIL;
|
|
}
|