Module: wine Branch: master Commit: 7cd13e17adcda9ea6131399e172a4e003d807855 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7cd13e17adcda9ea6131399e17...
Author: Jacek Caban jacek@codeweavers.com Date: Mon Dec 24 12:42:09 2007 +0100
urlmon: Added BindProtocol::GetBindString implementation.
---
dlls/urlmon/bindprot.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/dlls/urlmon/bindprot.c b/dlls/urlmon/bindprot.c index c2033fc..1312a84 100644 --- a/dlls/urlmon/bindprot.c +++ b/dlls/urlmon/bindprot.c @@ -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