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

shdocvw: Return S_OK in OnStartBinding.

parent 3ebdcb84
No related branches found
No related tags found
No related merge requests found
......@@ -152,8 +152,10 @@ static HRESULT WINAPI BindStatusCallback_OnStartBinding(IBindStatusCallback *ifa
DWORD dwReserved, IBinding *pbind)
{
BindStatusCallback *This = BINDSC_THIS(iface);
FIXME("(%p)->(%d %p)\n", This, dwReserved, pbind);
return E_NOTIMPL;
TRACE("(%p)->(%d %p)\n", This, dwReserved, pbind);
return S_OK;
}
static HRESULT WINAPI BindStatusCallback_GetPriority(IBindStatusCallback *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