oleaut32/tests: Add a test for calling a varargs method using typelib marshaller.
[wine.git] / dlls / oleaut32 / tests / tmarshal.idl
blobff9cac37e2594c5517996705f2d3e301697ec08a
1 /*
2 * Copyright (C) 2005 Robert Shearman
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
20 #pragma makedep ident
21 #pragma makedep typelib
23 #include "tmarshal_dispids.h"
24 import "ocidl.idl";
27 uuid(d96d8a3e-78b6-4c8d-8f27-059db959be8a),
28 version(2.5),
29 helpstring("Test Typelib")
31 library TestTypelib
33 importlib("stdole2.tlb");
35 typedef enum tagSTATE
37 STATE_UNWIDGETIFIED = 1,
38 STATE_WIDGETIFIED
39 } STATE;
41 typedef struct tagMYSTRUCT
43 INT field1;
44 ULONGLONG field2;
45 UINT uarr[8];
46 } MYSTRUCT;
48 coclass ApplicationObject2;
51 odl,
52 uuid(12345678-1234-4321-1234-121212121212)
54 interface ISomethingFromDispatch : IDispatch
56 HRESULT anotherfn(void);
60 odl,
61 oleautomation,
62 dual,
63 uuid(3f7e06fe-0bce-46f0-8b7d-3a68393c7967)
65 interface ItestDual : IDispatch
67 HRESULT test();
71 odl,
72 uuid(3f7e06fe-0bce-46f0-8b7d-3a68393c7968)
74 interface ITestSecondIface : IUnknown
76 HRESULT test();
80 odl,
81 oleautomation,
82 dual,
83 uuid(3f7e06fe-0bce-46f0-8b7d-3a68393c7969)
85 interface ITestSecondDisp : IDispatch
87 HRESULT test();
91 odl,
92 uuid(a1f8cae3-c947-4c5f-b57d-c87b9b5f3586),
93 oleautomation,
94 dual
96 interface IWidget : IDispatch
98 [propput, id(DISPID_TM_NAME)]
99 HRESULT Name([in] BSTR name);
100 [propget, id(DISPID_TM_NAME)]
101 HRESULT Name([out, retval] BSTR *name);
103 [id(DISPID_TM_DOSOMETHING)]
104 HRESULT DoSomething([in] double number, [out] BSTR *str1, [in, defaultvalue("")] BSTR str2, [in, optional] VARIANT *opt);
106 [propget, id(DISPID_TM_STATE)]
107 HRESULT State([out, retval] STATE *state);
108 [propput, id(DISPID_TM_STATE)]
109 HRESULT State([in] STATE state);
111 [id(DISPID_TM_MAP)]
112 HRESULT Map([in] BSTR bstrId, [out, retval] BSTR *sValue);
114 [id(DISPID_TM_SETOLECOLOR)]
115 HRESULT SetOleColor([in] OLE_COLOR val);
117 [id(DISPID_TM_GETOLECOLOR)]
118 HRESULT GetOleColor([out, retval] OLE_COLOR *pVal);
120 [propget, id(DISPID_TM_CLONE)]
121 HRESULT Clone([out, retval] IWidget **ppVal);
123 [propget, id(DISPID_TM_CLONEDISPATCH)]
124 HRESULT CloneDispatch([out, retval] IDispatch **ppVal);
126 [propget, id(DISPID_TM_CLONECOCLASS)]
127 HRESULT CloneCoclass([out, retval] ApplicationObject2 **ppVal);
129 [propget, id(DISPID_VALUE)]
130 HRESULT Value([in] VARIANT *value, [out, retval] VARIANT *retval);
132 [id(DISPID_TM_ARRAY)]
133 HRESULT Array([in] SAFEARRAY(BSTR) values);
135 [id(DISPID_TM_VARARRAYPTR)]
136 HRESULT VariantArrayPtr([in] SAFEARRAY(VARIANT) *values);
138 [id(DISPID_TM_VARCARRAY)]
139 HRESULT VariantCArray([in] ULONG count, [in, out] VARIANT values[2]);
141 [id(DISPID_TM_VARIANT)]
142 HRESULT Variant([in] VARIANT var);
144 [vararg, id(DISPID_TM_VARARG)]
145 HRESULT VarArg([in] int numexpect, [in] SAFEARRAY(VARIANT) values);
147 [id(DISPID_TM_STRUCTARGS)]
148 HRESULT StructArgs([in] MYSTRUCT byval, [in] MYSTRUCT *byptr, [in] MYSTRUCT arr[5]);
150 [id(DISPID_TM_ERROR)]
151 HRESULT Error();
153 [propget, id(DISPID_TM_CLONEINTERFACE)]
154 HRESULT CloneInterface([out, retval] ISomethingFromDispatch **ppVal);
156 [id(DISPID_TM_PROP_WITH_LCID), propput]
157 HRESULT prop_with_lcid([in,lcid] long lcid, [in] INT i);
159 [id(DISPID_TM_PROP_WITH_LCID), propget]
160 HRESULT prop_with_lcid([in,lcid] long lcid, [out,retval] INT *i);
162 [id(DISPID_TM_PROP_INT), propget]
163 HRESULT prop_int([out,retval] INT *i);
165 [id(DISPID_TM_PROP_UINT), propget]
166 HRESULT prop_uint([out,retval] UINT *i);
168 [id(DISPID_TM_BYREF_UINT)]
169 HRESULT ByRefUInt([in, out] UINT *i);
171 [id(DISPID_TM_PROP_OPT_ARG), propput]
172 HRESULT prop_opt_arg([in,optional] INT opt, [in] INT i);
174 [id(DISPID_TM_PROP_REQ_ARG), propput]
175 HRESULT prop_req_arg([in] INT req, [in] INT i);
177 [id(DISPID_TM_RESTRICTED), restricted]
178 HRESULT pos_restrict([out, retval] INT *i);
180 [id(DISPID_TM_NEG_RESTRICTED), restricted]
181 HRESULT neg_restrict([out, retval] INT *i);
183 [id(DISPID_TM_VARARG_RUN), vararg]
184 HRESULT VarArg_Run([in] BSTR name, [in] SAFEARRAY(VARIANT) params, [out, retval] VARIANT *result);
188 odl,
189 uuid(a1f8cae3-c947-3c5f-a57c-c88b9b6f3586),
190 oleautomation,
191 dual
193 interface IStaticWidget : IDispatch
195 [id(DISPID_TM_TESTDUAL)]
196 HRESULT TestDual([in] ItestDual *p);
198 [id(DISPID_TM_TESTSECONDIFACE)]
199 HRESULT TestSecondIface([in] ITestSecondIface *p);
203 odl,
204 uuid(a028db05-30f0-4b93-b17a-41c72f831d84),
205 #if 0 /* FIXME: commented out as causes widl to generate incorrect typelib */
206 dual,
207 #endif
208 oleautomation
210 interface IKindaEnumWidget : IUnknown
212 HRESULT Next(
213 [out] IWidget **widget);
215 HRESULT Count(
216 [out] unsigned long *count);
218 HRESULT Reset();
220 HRESULT Clone(
221 [out] IKindaEnumWidget **ppenum);
225 odl,
226 uuid(a028db06-30f0-4b93-b17a-41c72f831d84),
228 interface INonOleAutomation : IUnknown
230 [id(DISPID_NOA_BSTRRET)]
231 BSTR BstrRet();
233 [id(DISPID_NOA_ERROR)]
234 HRESULT Error();
239 dllname("comm.drv"),
240 uuid(d377f60b-8639-4261-8ee7-75c8340d2cc9),
242 module BadModule
245 entry("Foo"),
247 HRESULT BadModuleFoo();
251 dllname("oleaut32.dll"),
252 uuid(d377f60c-8639-4261-8ee7-75c8340d2cc9),
254 module BadEntry
257 entry("Foo"),
259 HRESULT BadEntryFoo();
263 uuid(bb171948-10ec-407a-9a57-2f85f797ff1a),
264 appobject,
266 coclass ApplicationObject2
268 interface IWidget;
269 [source] interface IWidget;
273 odl,
274 uuid(375f8a9d-33d0-44f3-b972-61f8407899e0)
276 interface ItestIF1 : IUnknown
278 HRESULT fn1([in] int x);
279 HRESULT fn2([out,retval] int *x);
283 odl,
284 uuid(094056a3-666f-4956-be12-1859668310b8)
286 interface ItestIF2 : ItestIF1
288 HRESULT fn3([in] int y);
292 odl,
293 uuid(33baba09-2e68-43ab-81fe-d84b403df2e5)
295 dispinterface ItestIF3
297 interface ItestIF2;
301 odl,
302 uuid(a01005c7-7491-42eb-94f3-668e37ce60a6)
304 dispinterface ItestIF4
306 properties:
307 methods:
308 [id(0x1c)] HRESULT fn([in] int z);
312 odl,
313 uuid(4ab61e25-c09f-4239-8f7f-7a018ea0199f),
314 dual
316 interface ItestIF5 : ItestIF2
318 [id(0x1234)] HRESULT fn4([in] int a);
319 [id(0x1235)] HRESULT fn5([in] int a);
323 odl,
324 uuid(ec236d8e-2cc7-44f2-b394-36c86ff3da74)
326 interface ItestIF6 : IDispatch
328 [id(0x1234)] HRESULT fn4([in] int a);
329 [id(0x1235)] HRESULT fn5([in] int a);
333 odl,
334 uuid(f711b105-554d-4751-818c-46fcc5d7c0d5),
335 dual
337 interface ItestIF7 : ItestIF6
339 [id(0x1236)] HRESULT fn6([in] GUID a);
343 odl,
344 uuid(bdfa260b-ef40-43d3-b071-cddec919f132)
346 interface ItestIF8
348 HRESULT fn1([in] int x);
349 HRESULT fn2([out,retval] int *x);
353 odl,
354 uuid(51033a23-dc37-4f19-aa34-4d8a670458a0)
357 interface ItestIF9 : ItestIF8
359 HRESULT fn3([in] int y);
363 odl,
364 uuid(2e8f14fe-0bce-42f0-8b7d-3af8393c7967)
366 dispinterface ItestIF10
368 interface ItestIF9;
372 odl,
373 uuid(7d9e9371-482e-4944-9b19-511fc705236f)
375 dispinterface ItestIF11
377 interface ItestIF7;