wscript: Implemented Host_put_Interactive.

oldstable
Michał Ziętek 2011-08-23 15:16:15 +02:00 committed by Alexandre Julliard
parent 280dbcf84a
commit 154578d75c
2 changed files with 8 additions and 2 deletions

View File

@ -154,8 +154,10 @@ static HRESULT WINAPI Host_get_Interactive(IHost *iface, VARIANT_BOOL *out_Inter
static HRESULT WINAPI Host_put_Interactive(IHost *iface, VARIANT_BOOL v)
{
WINE_FIXME("(%x)\n", v);
return E_NOTIMPL;
WINE_TRACE("(%x)\n", v);
wshInteractive = v;
return S_OK;
}
static HRESULT WINAPI Host_Quit(IHost *iface, int ExitCode)

View File

@ -43,5 +43,9 @@ try {
ok(WScript.Arguments.Count() === 3, "WScript.Arguments.Count() = " + WScript.Arguments.Count());
ok(WScript.Arguments.length === 3, "WScript.Arguments.length = " + WScript.Arguments.length);
ok(WScript.Interactive === true, "WScript.Interactive = " + WScript.Interactive);
WScript.Interactive = false;
ok(WScript.Interactive === false, "WScript.Interactive = " + WScript.Interactive);
WScript.Interactive = true;
ok(WScript.Interactive === true, "WScript.Interactive = " + WScript.Interactive);
winetest.reportSuccess();