2 * Copyright 2011 Michal Zietek
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include <wine/debug.h>
32 WINE_DEFAULT_DEBUG_CHANNEL(wscript
);
37 static HRESULT WINAPI
Arguments2_QueryInterface(IArguments2
*iface
, REFIID riid
, void **ppv
)
39 WINE_TRACE("(%s %p)\n", wine_dbgstr_guid(riid
), ppv
);
41 if(IsEqualGUID(&IID_IUnknown
, riid
)
42 || IsEqualGUID(&IID_IDispatch
, riid
)
43 || IsEqualGUID(&IID_IArguments2
, riid
)) {
52 static ULONG WINAPI
Arguments2_AddRef(IArguments2
*iface
)
57 static ULONG WINAPI
Arguments2_Release(IArguments2
*iface
)
62 static HRESULT WINAPI
Arguments2_GetTypeInfoCount(IArguments2
*iface
, UINT
*pctinfo
)
64 WINE_TRACE("(%p)\n", pctinfo
);
70 static HRESULT WINAPI
Arguments2_GetTypeInfo(IArguments2
*iface
, UINT iTInfo
, LCID lcid
,
73 WINE_TRACE("(%x %x %p\n", iTInfo
, lcid
, ppTInfo
);
75 ITypeInfo_AddRef(arguments_ti
);
76 *ppTInfo
= arguments_ti
;
80 static HRESULT WINAPI
Arguments2_GetIDsOfNames(IArguments2
*iface
, REFIID riid
, LPOLESTR
*rgszNames
,
81 UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
83 WINE_TRACE("(%s %p %d %x %p)\n", wine_dbgstr_guid(riid
), rgszNames
,
84 cNames
, lcid
, rgDispId
);
86 return ITypeInfo_GetIDsOfNames(arguments_ti
, rgszNames
, cNames
, rgDispId
);
89 static HRESULT WINAPI
Arguments2_Invoke(IArguments2
*iface
, DISPID dispIdMember
, REFIID riid
,
90 LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
,
91 EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
93 WINE_TRACE("(%d %p %p)\n", dispIdMember
, pDispParams
, pVarResult
);
95 return ITypeInfo_Invoke(arguments_ti
, iface
, dispIdMember
, wFlags
, pDispParams
,
96 pVarResult
, pExcepInfo
, puArgErr
);
99 static HRESULT WINAPI
Arguments2_Item(IArguments2
*iface
, LONG index
, BSTR
*out_Value
)
101 WINE_TRACE("(%d %p)\n", index
, out_Value
);
103 if(index
<0 || index
>= numOfArgs
)
105 if(!(*out_Value
= SysAllocString(argums
[index
])))
106 return E_OUTOFMEMORY
;
111 static HRESULT WINAPI
Arguments2_Count(IArguments2
*iface
, LONG
*out_Count
)
113 WINE_TRACE("(%p)\n", out_Count
);
115 *out_Count
= numOfArgs
;
119 static HRESULT WINAPI
Arguments2_get_length(IArguments2
*iface
, LONG
*out_Count
)
121 WINE_TRACE("(%p)\n", out_Count
);
123 *out_Count
= numOfArgs
;
127 static const IArguments2Vtbl Arguments2Vtbl
= {
128 Arguments2_QueryInterface
,
131 Arguments2_GetTypeInfoCount
,
132 Arguments2_GetTypeInfo
,
133 Arguments2_GetIDsOfNames
,
137 Arguments2_get_length
140 IArguments2 arguments_obj
= { &Arguments2Vtbl
};