urlmon: Added BindProtocol::GetBindString implementation.

This commit is contained in:
Jacek Caban 2007-12-24 12:42:09 +01:00 committed by Alexandre Julliard
parent 0d869d539f
commit 7cd13e17ad
1 changed files with 4 additions and 2 deletions

View File

@ -317,8 +317,10 @@ static HRESULT WINAPI BindInfo_GetBindString(IInternetBindInfo *iface,
ULONG ulStringType, LPOLESTR *ppwzStr, ULONG cEl, ULONG *pcElFetched)
{
BindProtocol *This = BINDINFO_THIS(iface);
FIXME("(%p)->(%d %p %d %p)\n", This, ulStringType, ppwzStr, cEl, pcElFetched);
return E_NOTIMPL;
TRACE("(%p)->(%d %p %d %p)\n", This, ulStringType, ppwzStr, cEl, pcElFetched);
return IInternetBindInfo_GetBindString(This->bind_info, ulStringType, ppwzStr, cEl, pcElFetched);
}
#undef BINDFO_THIS