wscript: Added WScript.Quit semi-stub implementation.
Signed-off-by: Thiago Barbato <thiagocbbt@gmail.com> Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7dc5d5ebfe
commit
341bb46fc6
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue