Commit d83af6fc authored by Dmitry Kislyuk's avatar Dmitry Kislyuk Committed by Vitaly Lipatov

wscript: return TRUE for /d and /u stub switches

Patch by Robert Wilhelm from bug: https://bugs.winehq.org/show_bug.cgi?id=49905 VbsEdit is able to execute scripts with this patch applied. Signed-off-by: 's avatarDmitry Kislyuk <dimaki@rocketmail.com>
parent fb963625
......@@ -393,6 +393,10 @@ static BOOL set_host_properties(const WCHAR *prop)
wshInteractive = VARIANT_FALSE;
else if(wcsicmp(prop, L"nologo") == 0)
WINE_FIXME("ignored %s switch\n", debugstr_w(L"nologo"));
else if(wcsicmp(prop, L"d") == 0)
WINE_FIXME("ignored %s switch\n", debugstr_w(L"d"));
else if(wcsicmp(prop, L"u") == 0)
WINE_FIXME("ignored %s switch\n", debugstr_w(L"u"));
else
{
WINE_FIXME("unsupported switch %s\n", debugstr_w(prop));
......
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