msxml3: Add ::GetConnectionInterface().

This commit is contained in:
Nikolay Sivov 2010-10-23 17:31:52 +04:00 committed by Alexandre Julliard
parent 2a080e85e4
commit eb23a4df25
1 changed files with 8 additions and 3 deletions

View File

@ -2895,11 +2895,16 @@ static ULONG WINAPI ConnectionPoint_Release(IConnectionPoint *iface)
return IConnectionPointContainer_Release(This->container); return IConnectionPointContainer_Release(This->container);
} }
static HRESULT WINAPI ConnectionPoint_GetConnectionInterface(IConnectionPoint *iface, IID *pIID) static HRESULT WINAPI ConnectionPoint_GetConnectionInterface(IConnectionPoint *iface, IID *iid)
{ {
ConnectionPoint *This = impl_from_IConnectionPoint(iface); ConnectionPoint *This = impl_from_IConnectionPoint(iface);
FIXME("(%p)->(%p): stub\n", This, pIID);
return E_NOTIMPL; TRACE("(%p)->(%p)\n", This, iid);
if (!iid) return E_POINTER;
*iid = *This->iid;
return S_OK;
} }
static HRESULT WINAPI ConnectionPoint_GetConnectionPointContainer(IConnectionPoint *iface, static HRESULT WINAPI ConnectionPoint_GetConnectionPointContainer(IConnectionPoint *iface,