Commit 4252bd86 authored by Michał Ziętek's avatar Michał Ziętek Committed by Alexandre Julliard

wscript: Implemented Arguments2_get_length.

parent 5079fe98
......@@ -118,8 +118,10 @@ static HRESULT WINAPI Arguments2_Count(IArguments2 *iface, LONG *out_Count)
static HRESULT WINAPI Arguments2_get_length(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 const IArguments2Vtbl Arguments2Vtbl = {
......
......@@ -41,5 +41,6 @@ try {
ok(false, "expected exception");
}catch(e) {}
ok(WScript.Arguments.Count() === 3, "WScript.Arguments.Count() = " + WScript.Arguments.Count());
ok(WScript.Arguments.length === 3, "WScript.Arguments.length = " + WScript.Arguments.length);
winetest.reportSuccess();
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