Commit c42a7789 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

shdocvw: Return S_OK in OnStartBinding.

parent 3ebdcb84
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment