Commit 09c20de8 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Improve debug messages for timer invocation.

parent 537bbe2c
......@@ -374,8 +374,14 @@ static void call_timer_disp(IDispatch *disp)
V_VT(&res) = VT_EMPTY;
memset(&ei, 0, sizeof(ei));
TRACE(">>>\n");
hres = IDispatch_Invoke(disp, DISPID_VALUE, &IID_NULL, 0, DISPATCH_METHOD, &dp, &res, &ei, NULL);
TRACE("ret %08x %s\n", hres, debugstr_variant(&res));
if(hres == S_OK)
TRACE("<<<\n");
else
WARN("<<< %08x\n", hres);
VariantClear(&res);
}
......
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