Jacek Caban : urlmon: Added BindProtocol::GetBindString implementation.

Alexandre Julliard julliard at winehq.org
Mon Dec 24 14:21:36 CST 2007


Module: wine
Branch: master
Commit: 7cd13e17adcda9ea6131399e172a4e003d807855
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7cd13e17adcda9ea6131399e172a4e003d807855

Author: Jacek Caban <jacek at 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




More information about the wine-cvs mailing list