mshtml: Added GetConnectionPointContainer implementation.

This commit is contained in:
Jacek Caban 2006-04-28 20:02:14 +02:00 committed by Alexandre Julliard
parent 1cfcbb3010
commit a9cdfa9952
1 changed files with 9 additions and 2 deletions

View File

@ -91,8 +91,15 @@ static HRESULT WINAPI ConnectionPoint_GetConnectionPointContainer(IConnectionPoi
IConnectionPointContainer **ppCPC)
{
ConnectionPoint *This = CONPOINT_THIS(iface);
FIXME("(%p)->(%p)\n", This, ppCPC);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, ppCPC);
if(!ppCPC)
return E_POINTER;
*ppCPC = CONPTCONT(This->doc);
IConnectionPointContainer_AddRef(*ppCPC);
return S_OK;
}
static HRESULT WINAPI ConnectionPoint_Advise(IConnectionPoint *iface, IUnknown *pUnkSink,