Skip to content
Snippets Groups Projects
Commit 7cd13e17 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard
Browse files

urlmon: Added BindProtocol::GetBindString implementation.

parent 0d869d53
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment