mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
mshtml: Forward IHTMLWindow2::setTimeout to IHTMLWindow3::setTimeout.
This commit is contained in:
parent
aeb1095b47
commit
8640955188
@ -184,8 +184,14 @@ static HRESULT WINAPI HTMLWindow2_setTimeout(IHTMLWindow2 *iface, BSTR expressio
|
||||
long msec, VARIANT *language, long *timerID)
|
||||
{
|
||||
HTMLWindow *This = HTMLWINDOW2_THIS(iface);
|
||||
FIXME("(%p)->(%s %ld %p %p)\n", This, debugstr_w(expression), msec, language, timerID);
|
||||
return E_NOTIMPL;
|
||||
VARIANT expr_var;
|
||||
|
||||
TRACE("(%p)->(%s %ld %p %p)\n", This, debugstr_w(expression), msec, language, timerID);
|
||||
|
||||
V_VT(&expr_var) = VT_BSTR;
|
||||
V_BSTR(&expr_var) = expression;
|
||||
|
||||
return IHTMLWindow3_setTimeout(HTMLWINDOW3(This), &expr_var, msec, language, timerID);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI HTMLWindow2_clearTimeout(IHTMLWindow2 *iface, long timerID)
|
||||
|
Loading…
Reference in New Issue
Block a user