Commit 341bb46f authored by Thiago Barbato's avatar Thiago Barbato Committed by Alexandre Julliard

wscript: Added WScript.Quit semi-stub implementation.

parent 7dc5d5eb
......@@ -224,8 +224,10 @@ static HRESULT WINAPI Host_put_Interactive(IHost *iface, VARIANT_BOOL v)
static HRESULT WINAPI Host_Quit(IHost *iface, int ExitCode)
{
WINE_FIXME("(%d)\n", ExitCode);
return E_NOTIMPL;
FIXME("(%d) semi-stub: no script engine clean up\n", ExitCode);
ExitProcess(ExitCode);
return S_OK;
}
static HRESULT WINAPI Host_get_ScriptName(IHost *iface, BSTR *out_ScriptName)
......
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