From a6eb0780be69dfb373ba05cbd3e83e26cd5429a1 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 24 Dec 2007 12:42:32 +0100 Subject: [PATCH] urlmon: Added BindProtocol::Switch implementation. --- dlls/urlmon/bindprot.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dlls/urlmon/bindprot.c b/dlls/urlmon/bindprot.c index b8f3a8b70c8..8e636731956 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,