wscript: Implemented Arguments2_Count.
This commit is contained in:
parent
1c29375031
commit
5079fe9839
|
@ -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)
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue