urlmon: Added BindProtocol::Switch implementation.

This commit is contained in:
Jacek Caban 2007-12-24 12:42:32 +01:00 committed by Alexandre Julliard
parent a9765337f8
commit a6eb0780be
1 changed files with 4 additions and 2 deletions

View File

@ -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,