wscript: Implemented Arguments2_Count.

oldstable
Michał Ziętek 2011-08-23 15:15:58 +02:00 committed by Alexandre Julliard
parent 1c29375031
commit 5079fe9839
2 changed files with 5 additions and 2 deletions

View File

@ -110,8 +110,10 @@ static HRESULT WINAPI Arguments2_Item(IArguments2 *iface, LONG index, BSTR *out_
static HRESULT WINAPI Arguments2_Count(IArguments2 *iface, LONG *out_Count)
{
WINE_FIXME("(%p)\n", out_Count);
return E_NOTIMPL;
WINE_TRACE("(%p)\n", out_Count);
*out_Count = numOfArgs;
return S_OK;
}
static HRESULT WINAPI Arguments2_get_length(IArguments2 *iface, LONG *out_Count)

View File

@ -40,5 +40,6 @@ try {
WScript.Arguments.Item(3);
ok(false, "expected exception");
}catch(e) {}
ok(WScript.Arguments.Count() === 3, "WScript.Arguments.Count() = " + WScript.Arguments.Count());
winetest.reportSuccess();