Skip to content
Snippets Groups Projects
Commit a6eb0780 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard
Browse files

urlmon: Added BindProtocol::Switch implementation.

parent a9765337
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment