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

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


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Mon Dec 24 12:42:32 2007 +0100

urlmon: Added BindProtocol::Switch 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 b8f3a8b..8e63673 100644
--- a/dlls/urlmon/bindprot.c
+++ b/dlls/urlmon/bindprot.c
@@ -416,8 +416,10 @@ static HRESULT WINAPI InternetProtocolSink_Switch(IInternetProtocolSink *iface,
         PROTOCOLDATA *pProtocolData)
 {
     BindProtocol *This = PROTSINK_THIS(iface);
-    FIXME("(%p)->(%p)\n", This, pProtocolData);
-    return E_NOTIMPL;
+
+    TRACE("(%p)->(%p)\n", This, pProtocolData);
+
+    return IInternetProtocolSink_Switch(This->protocol_sink, pProtocolData);
 }
 
 static HRESULT WINAPI InternetProtocolSink_ReportProgress(IInternetProtocolSink *iface,




More information about the wine-cvs mailing list