mshtml: Return S_OK in OnStartBinding and OnStopBinding.
This commit is contained in:
parent
93fe34ee68
commit
42f96fce67
|
@ -247,7 +247,7 @@ static HRESULT WINAPI BindStatusCallback_OnStartBinding(IBindStatusCallback *ifa
|
||||||
{
|
{
|
||||||
BSCallback *This = STATUSCLB_THIS(iface);
|
BSCallback *This = STATUSCLB_THIS(iface);
|
||||||
FIXME("(%p)->(%ld %p)\n", This, dwReserved, pbind);
|
FIXME("(%p)->(%ld %p)\n", This, dwReserved, pbind);
|
||||||
return E_NOTIMPL;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI BindStatusCallback_GetPriority(IBindStatusCallback *iface, LONG *pnPriority)
|
static HRESULT WINAPI BindStatusCallback_GetPriority(IBindStatusCallback *iface, LONG *pnPriority)
|
||||||
|
@ -278,7 +278,7 @@ static HRESULT WINAPI BindStatusCallback_OnStopBinding(IBindStatusCallback *ifac
|
||||||
{
|
{
|
||||||
BSCallback *This = STATUSCLB_THIS(iface);
|
BSCallback *This = STATUSCLB_THIS(iface);
|
||||||
FIXME("(%p)->(%08lx %s)\n", This, hresult, debugstr_w(szError));
|
FIXME("(%p)->(%08lx %s)\n", This, hresult, debugstr_w(szError));
|
||||||
return E_NOTIMPL;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI BindStatusCallback_GetBindInfo(IBindStatusCallback *iface,
|
static HRESULT WINAPI BindStatusCallback_GetBindInfo(IBindStatusCallback *iface,
|
||||||
|
|
Loading…
Reference in New Issue