Merge trunk r45185
[reactos.git] / rostests / winetests / oleaut32 / typelib.c
1 /*
2 * ITypeLib and ITypeInfo test
3 *
4 * Copyright 2004 Jacek Caban
5 * Copyright 2006 Dmitry Timoshkov
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 */
21
22 #define COBJMACROS
23
24 #include <wine/test.h>
25 #include <stdarg.h>
26 #include <stdio.h>
27
28 #include "windef.h"
29 #include "winbase.h"
30 #include "oleauto.h"
31 #include "ocidl.h"
32 #include "shlwapi.h"
33 #include "tmarshal.h"
34
35 #define expect_eq(expr, value, type, format) { type _ret = (expr); ok((value) == _ret, #expr " expected " format " got " format "\n", value, _ret); }
36 #define expect_int(expr, value) expect_eq(expr, (int)(value), int, "%d")
37 #define expect_hex(expr, value) expect_eq(expr, (int)(value), int, "0x%x")
38 #define expect_null(expr) expect_eq(expr, NULL, const void *, "%p")
39
40 #define expect_wstr_acpval(expr, value) \
41 { \
42 CHAR buf[260]; \
43 expect_eq(!WideCharToMultiByte(CP_ACP, 0, (expr), -1, buf, 260, NULL, NULL), 0, int, "%d"); \
44 ok(lstrcmp(value, buf) == 0, #expr " expected \"%s\" got \"%s\"\n", value, buf); \
45 }
46
47 #define ole_expect(expr, expect) { \
48 HRESULT r = expr; \
49 ok(r == (expect), #expr " returned %x, expected %s (%x)\n", r, #expect, expect); \
50 }
51
52 #define ole_check(expr) ole_expect(expr, S_OK);
53
54 #define ok_ole_success(hr, func) ok(hr == S_OK, #func " failed with error 0x%08x\n", hr)
55
56 static const WCHAR wszStdOle2[] = {'s','t','d','o','l','e','2','.','t','l','b',0};
57
58 static void ref_count_test(LPCWSTR type_lib)
59 {
60 ITypeLib *iface;
61 ITypeInfo *iti1, *iti2;
62 HRESULT hRes;
63 int ref_count;
64
65 trace("Loading type library\n");
66 hRes = LoadTypeLib(type_lib, &iface);
67 ok(hRes == S_OK, "Could not load type library\n");
68 if(hRes != S_OK)
69 return;
70
71 hRes = ITypeLib_GetTypeInfo(iface, 1, &iti1);
72 ok(hRes == S_OK, "ITypeLib_GetTypeInfo failed on index = 1\n");
73 ok(ref_count=ITypeLib_Release(iface) > 0, "ITypeLib destroyed while ITypeInfo has back pointer\n");
74 if(!ref_count)
75 return;
76
77 hRes = ITypeLib_GetTypeInfo(iface, 1, &iti2);
78 ok(hRes == S_OK, "ITypeLib_GetTypeInfo failed on index = 1\n");
79 ok(iti1 == iti2, "ITypeLib_GetTypeInfo returned different pointers for same indexes\n");
80
81 ITypeLib_AddRef(iface);
82 ITypeInfo_Release(iti2);
83 ITypeInfo_Release(iti1);
84 ok(ITypeLib_Release(iface) == 0, "ITypeLib should be destroyed here.\n");
85 }
86
87 static void test_TypeComp(void)
88 {
89 ITypeLib *pTypeLib;
90 ITypeComp *pTypeComp;
91 HRESULT hr;
92 ULONG ulHash;
93 DESCKIND desckind;
94 BINDPTR bindptr;
95 ITypeInfo *pTypeInfo;
96 ITypeInfo *pFontTypeInfo;
97 static WCHAR wszStdFunctions[] = {'S','t','d','F','u','n','c','t','i','o','n','s',0};
98 static WCHAR wszSavePicture[] = {'S','a','v','e','P','i','c','t','u','r','e',0};
99 static WCHAR wszOLE_TRISTATE[] = {'O','L','E','_','T','R','I','S','T','A','T','E',0};
100 static WCHAR wszUnchecked[] = {'U','n','c','h','e','c','k','e','d',0};
101 static WCHAR wszIUnknown[] = {'I','U','n','k','n','o','w','n',0};
102 static WCHAR wszFont[] = {'F','o','n','t',0};
103 static WCHAR wszGUID[] = {'G','U','I','D',0};
104 static WCHAR wszStdPicture[] = {'S','t','d','P','i','c','t','u','r','e',0};
105 static WCHAR wszOLE_COLOR[] = {'O','L','E','_','C','O','L','O','R',0};
106 static WCHAR wszClone[] = {'C','l','o','n','e',0};
107 static WCHAR wszclone[] = {'c','l','o','n','e',0};
108
109 hr = LoadTypeLib(wszStdOle2, &pTypeLib);
110 ok_ole_success(hr, LoadTypeLib);
111
112 hr = ITypeLib_GetTypeComp(pTypeLib, &pTypeComp);
113 ok_ole_success(hr, ITypeLib_GetTypeComp);
114
115 /* test getting a TKIND_MODULE */
116 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszStdFunctions);
117 hr = ITypeComp_Bind(pTypeComp, wszStdFunctions, ulHash, 0, &pTypeInfo, &desckind, &bindptr);
118 ok_ole_success(hr, ITypeComp_Bind);
119
120 ok(desckind == DESCKIND_TYPECOMP,
121 "desckind should have been DESCKIND_TYPECOMP instead of %d\n",
122 desckind);
123 ok(!pTypeInfo, "pTypeInfo should have been set to NULL\n");
124
125 ITypeComp_Release(bindptr.lptcomp);
126
127 /* test getting a TKIND_MODULE with INVOKE_PROPERTYGET */
128 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszStdFunctions);
129 hr = ITypeComp_Bind(pTypeComp, wszStdFunctions, ulHash, INVOKE_PROPERTYGET, &pTypeInfo, &desckind, &bindptr);
130 ok_ole_success(hr, ITypeComp_Bind);
131
132 ok(desckind == DESCKIND_TYPECOMP,
133 "desckind should have been DESCKIND_TYPECOMP instead of %d\n",
134 desckind);
135 ok(!pTypeInfo, "pTypeInfo should have been set to NULL\n");
136 ITypeComp_Release(bindptr.lptcomp);
137
138 /* test getting a function within a TKIND_MODULE */
139 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszSavePicture);
140 hr = ITypeComp_Bind(pTypeComp, wszSavePicture, ulHash, 0, &pTypeInfo, &desckind, &bindptr);
141 ok_ole_success(hr, ITypeComp_Bind);
142
143 ok(desckind == DESCKIND_FUNCDESC,
144 "desckind should have been DESCKIND_FUNCDESC instead of %d\n",
145 desckind);
146 ok(bindptr.lpfuncdesc != NULL, "bindptr.lpfuncdesc should not have been set to NULL\n");
147 ITypeInfo_ReleaseFuncDesc(pTypeInfo, bindptr.lpfuncdesc);
148 ITypeInfo_Release(pTypeInfo);
149
150 /* test getting a function within a TKIND_MODULE with INVOKE_PROPERTYGET */
151 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszSavePicture);
152 hr = ITypeComp_Bind(pTypeComp, wszSavePicture, ulHash, INVOKE_PROPERTYGET, &pTypeInfo, &desckind, &bindptr);
153 todo_wine ok(hr == TYPE_E_TYPEMISMATCH,
154 "ITypeComp_Bind should have failed with TYPE_E_TYPEMISMATCH instead of 0x%08x\n",
155 hr);
156
157 ok(desckind == DESCKIND_NONE,
158 "desckind should have been DESCKIND_NONE instead of %d\n",
159 desckind);
160 ok(!pTypeInfo, "pTypeInfo should have been set to NULL\n");
161 ok(!bindptr.lptcomp, "bindptr should have been set to NULL\n");
162
163 /* test getting a TKIND_ENUM */
164 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszOLE_TRISTATE);
165 hr = ITypeComp_Bind(pTypeComp, wszOLE_TRISTATE, ulHash, 0, &pTypeInfo, &desckind, &bindptr);
166 ok_ole_success(hr, ITypeComp_Bind);
167
168 ok(desckind == DESCKIND_TYPECOMP,
169 "desckind should have been DESCKIND_TYPECOMP instead of %d\n",
170 desckind);
171 ok(!pTypeInfo, "pTypeInfo should have been set to NULL\n");
172
173 ITypeComp_Release(bindptr.lptcomp);
174
175 /* test getting a value within a TKIND_ENUM */
176 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszUnchecked);
177 hr = ITypeComp_Bind(pTypeComp, wszUnchecked, ulHash, 0, &pTypeInfo, &desckind, &bindptr);
178 ok_ole_success(hr, ITypeComp_Bind);
179
180 ok(desckind == DESCKIND_VARDESC,
181 "desckind should have been DESCKIND_VARDESC instead of %d\n",
182 desckind);
183 ITypeInfo_ReleaseVarDesc(pTypeInfo, bindptr.lpvardesc);
184 ITypeInfo_Release(pTypeInfo);
185
186 /* test getting a TKIND_INTERFACE */
187 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszIUnknown);
188 hr = ITypeComp_Bind(pTypeComp, wszIUnknown, ulHash, 0, &pTypeInfo, &desckind, &bindptr);
189 ok_ole_success(hr, ITypeComp_Bind);
190
191 ok(desckind == DESCKIND_NONE,
192 "desckind should have been DESCKIND_NONE instead of %d\n",
193 desckind);
194 ok(!pTypeInfo, "pTypeInfo should have been set to NULL\n");
195 ok(!bindptr.lptcomp, "bindptr should have been set to NULL\n");
196
197 /* test getting a TKIND_DISPATCH */
198 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszFont);
199 hr = ITypeComp_Bind(pTypeComp, wszFont, ulHash, 0, &pTypeInfo, &desckind, &bindptr);
200 ok_ole_success(hr, ITypeComp_Bind);
201
202 ok(desckind == DESCKIND_NONE,
203 "desckind should have been DESCKIND_NONE instead of %d\n",
204 desckind);
205 ok(!pTypeInfo, "pTypeInfo should have been set to NULL\n");
206 ok(!bindptr.lptcomp, "bindptr should have been set to NULL\n");
207
208 /* test getting a TKIND_RECORD/TKIND_ALIAS */
209 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszGUID);
210 hr = ITypeComp_Bind(pTypeComp, wszGUID, ulHash, 0, &pTypeInfo, &desckind, &bindptr);
211 ok_ole_success(hr, ITypeComp_Bind);
212
213 ok(desckind == DESCKIND_NONE,
214 "desckind should have been DESCKIND_NONE instead of %d\n",
215 desckind);
216 ok(!pTypeInfo, "pTypeInfo should have been set to NULL\n");
217 ok(!bindptr.lptcomp, "bindptr should have been set to NULL\n");
218
219 /* test getting a TKIND_ALIAS */
220 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszOLE_COLOR);
221 hr = ITypeComp_Bind(pTypeComp, wszOLE_COLOR, ulHash, 0, &pTypeInfo, &desckind, &bindptr);
222 ok_ole_success(hr, ITypeComp_Bind);
223
224 ok(desckind == DESCKIND_NONE,
225 "desckind should have been DESCKIND_NONE instead of %d\n",
226 desckind);
227 ok(!pTypeInfo, "pTypeInfo should have been set to NULL\n");
228 ok(!bindptr.lptcomp, "bindptr should have been set to NULL\n");
229
230 /* test getting a TKIND_COCLASS */
231 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszStdPicture);
232 hr = ITypeComp_Bind(pTypeComp, wszStdPicture, ulHash, 0, &pTypeInfo, &desckind, &bindptr);
233 ok_ole_success(hr, ITypeComp_Bind);
234
235 ok(desckind == DESCKIND_NONE,
236 "desckind should have been DESCKIND_NONE instead of %d\n",
237 desckind);
238 ok(!pTypeInfo, "pTypeInfo should have been set to NULL\n");
239 ok(!bindptr.lptcomp, "bindptr should have been set to NULL\n");
240
241 ITypeComp_Release(pTypeComp);
242
243 /* tests for ITypeComp on an interface */
244 hr = ITypeLib_GetTypeInfoOfGuid(pTypeLib, &IID_IFont, &pFontTypeInfo);
245 ok_ole_success(hr, ITypeLib_GetTypeInfoOfGuid);
246
247 hr = ITypeInfo_GetTypeComp(pFontTypeInfo, &pTypeComp);
248 ok_ole_success(hr, ITypeLib_GetTypeComp);
249
250 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszClone);
251 hr = ITypeComp_Bind(pTypeComp, wszClone, ulHash, 0, &pTypeInfo, &desckind, &bindptr);
252 ok_ole_success(hr, ITypeComp_Bind);
253
254 ok(desckind == DESCKIND_FUNCDESC,
255 "desckind should have been DESCKIND_FUNCDESC instead of %d\n",
256 desckind);
257 ok(bindptr.lpfuncdesc != NULL, "bindptr.lpfuncdesc should not have been set to NULL\n");
258 ITypeInfo_ReleaseFuncDesc(pTypeInfo, bindptr.lpfuncdesc);
259 ITypeInfo_Release(pTypeInfo);
260
261 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszClone);
262 hr = ITypeComp_Bind(pTypeComp, wszClone, ulHash, INVOKE_PROPERTYGET, &pTypeInfo, &desckind, &bindptr);
263 ok(hr == TYPE_E_TYPEMISMATCH, "ITypeComp_Bind should have failed with TYPE_E_TYPEMISMATCH instead of 0x%08x\n", hr);
264
265 ok(desckind == DESCKIND_NONE,
266 "desckind should have been DESCKIND_NONE instead of %d\n",
267 desckind);
268 ok(!pTypeInfo, "pTypeInfo should have been set to NULL\n");
269 ok(!bindptr.lptcomp, "bindptr should have been set to NULL\n");
270
271 /* tests that the compare is case-insensitive */
272 ulHash = LHashValOfNameSys(SYS_WIN32, LOCALE_NEUTRAL, wszclone);
273 hr = ITypeComp_Bind(pTypeComp, wszclone, ulHash, 0, &pTypeInfo, &desckind, &bindptr);
274 ok_ole_success(hr, ITypeComp_Bind);
275
276 ok(desckind == DESCKIND_FUNCDESC,
277 "desckind should have been DESCKIND_FUNCDESC instead of %d\n",
278 desckind);
279 ok(bindptr.lpfuncdesc != NULL, "bindptr.lpfuncdesc should not have been set to NULL\n");
280 ITypeInfo_ReleaseFuncDesc(pTypeInfo, bindptr.lpfuncdesc);
281 ITypeInfo_Release(pTypeInfo);
282
283 ITypeComp_Release(pTypeComp);
284 ITypeInfo_Release(pFontTypeInfo);
285 ITypeLib_Release(pTypeLib);
286 }
287
288 static void test_CreateDispTypeInfo(void)
289 {
290 ITypeInfo *pTypeInfo, *pTI2;
291 HRESULT hr;
292 INTERFACEDATA ifdata;
293 METHODDATA methdata[4];
294 PARAMDATA parms1[2];
295 PARAMDATA parms3[1];
296 TYPEATTR *pTypeAttr;
297 HREFTYPE href;
298 FUNCDESC *pFuncDesc;
299 MEMBERID memid;
300
301 static WCHAR func1[] = {'f','u','n','c','1',0};
302 static const WCHAR func2[] = {'f','u','n','c','2',0};
303 static const WCHAR func3[] = {'f','u','n','c','3',0};
304 static const WCHAR parm1[] = {'p','a','r','m','1',0};
305 static const WCHAR parm2[] = {'p','a','r','m','2',0};
306 OLECHAR *name = func1;
307
308 ifdata.pmethdata = methdata;
309 ifdata.cMembers = sizeof(methdata) / sizeof(methdata[0]);
310
311 methdata[0].szName = SysAllocString(func1);
312 methdata[0].ppdata = parms1;
313 methdata[0].dispid = 0x123;
314 methdata[0].iMeth = 0;
315 methdata[0].cc = CC_STDCALL;
316 methdata[0].cArgs = 2;
317 methdata[0].wFlags = DISPATCH_METHOD;
318 methdata[0].vtReturn = VT_HRESULT;
319 parms1[0].szName = SysAllocString(parm1);
320 parms1[0].vt = VT_I4;
321 parms1[1].szName = SysAllocString(parm2);
322 parms1[1].vt = VT_BSTR;
323
324 methdata[1].szName = SysAllocString(func2);
325 methdata[1].ppdata = NULL;
326 methdata[1].dispid = 0x124;
327 methdata[1].iMeth = 1;
328 methdata[1].cc = CC_STDCALL;
329 methdata[1].cArgs = 0;
330 methdata[1].wFlags = DISPATCH_PROPERTYGET;
331 methdata[1].vtReturn = VT_I4;
332
333 methdata[2].szName = SysAllocString(func3);
334 methdata[2].ppdata = parms3;
335 methdata[2].dispid = 0x125;
336 methdata[2].iMeth = 3;
337 methdata[2].cc = CC_STDCALL;
338 methdata[2].cArgs = 1;
339 methdata[2].wFlags = DISPATCH_PROPERTYPUT;
340 methdata[2].vtReturn = VT_HRESULT;
341 parms3[0].szName = SysAllocString(parm1);
342 parms3[0].vt = VT_I4;
343
344 methdata[3].szName = SysAllocString(func3);
345 methdata[3].ppdata = NULL;
346 methdata[3].dispid = 0x125;
347 methdata[3].iMeth = 4;
348 methdata[3].cc = CC_STDCALL;
349 methdata[3].cArgs = 0;
350 methdata[3].wFlags = DISPATCH_PROPERTYGET;
351 methdata[3].vtReturn = VT_I4;
352
353 hr = CreateDispTypeInfo(&ifdata, LOCALE_NEUTRAL, &pTypeInfo);
354 ok(hr == S_OK, "hr %08x\n", hr);
355
356 hr = ITypeInfo_GetTypeAttr(pTypeInfo, &pTypeAttr);
357 ok(hr == S_OK, "hr %08x\n", hr);
358
359 ok(pTypeAttr->typekind == TKIND_COCLASS, "typekind %0x\n", pTypeAttr->typekind);
360 ok(pTypeAttr->cImplTypes == 1, "cImplTypes %d\n", pTypeAttr->cImplTypes);
361 ok(pTypeAttr->cFuncs == 0, "cFuncs %d\n", pTypeAttr->cFuncs);
362 ok(pTypeAttr->wTypeFlags == 0, "wTypeFlags %04x\n", pTypeAttr->cFuncs);
363 ITypeInfo_ReleaseTypeAttr(pTypeInfo, pTypeAttr);
364
365 hr = ITypeInfo_GetRefTypeOfImplType(pTypeInfo, 0, &href);
366 ok(hr == S_OK, "hr %08x\n", hr);
367 ok(href == 0, "href = 0x%x\n", href);
368 hr = ITypeInfo_GetRefTypeInfo(pTypeInfo, href, &pTI2);
369 ok(hr == S_OK, "hr %08x\n", hr);
370 hr = ITypeInfo_GetTypeAttr(pTI2, &pTypeAttr);
371 ok(hr == S_OK, "hr %08x\n", hr);
372 ok(pTypeAttr->typekind == TKIND_INTERFACE, "typekind %0x\n", pTypeAttr->typekind);
373 ok(pTypeAttr->cFuncs == 4, "cFuncs %d\n", pTypeAttr->cFuncs);
374 ok(IsEqualGUID(&pTypeAttr->guid, &GUID_NULL), "guid {%08x-...}\n", pTypeAttr->guid.Data1);
375 ok(pTypeAttr->wTypeFlags == 0, "typeflags %08x\n", pTypeAttr->wTypeFlags);
376
377 ITypeInfo_ReleaseTypeAttr(pTI2, pTypeAttr);
378
379 hr = ITypeInfo_GetFuncDesc(pTI2, 0, &pFuncDesc);
380 ok(hr == S_OK, "hr %08x\n", hr);
381 ok(pFuncDesc->memid == 0x123, "memid %x\n", pFuncDesc->memid);
382 ok(pFuncDesc->funckind == FUNC_VIRTUAL, "funckind %d\n", pFuncDesc->funckind);
383 ok(pFuncDesc->invkind == methdata[0].wFlags, "invkind %d\n", pFuncDesc->invkind);
384 ok(pFuncDesc->callconv == methdata[0].cc, "callconv %d\n", pFuncDesc->callconv);
385 ok(pFuncDesc->cParams == methdata[0].cArgs, "cParams %d\n", pFuncDesc->cParams);
386 ok(pFuncDesc->oVft == 0, "oVft %d\n", pFuncDesc->oVft);
387 ok(pFuncDesc->wFuncFlags == 0, "oVft %d\n", pFuncDesc->wFuncFlags);
388 ok(pFuncDesc->elemdescFunc.tdesc.vt == VT_HRESULT, "ret vt %x\n", pFuncDesc->elemdescFunc.tdesc.vt);
389 ok(pFuncDesc->lprgelemdescParam[0].tdesc.vt == VT_I4, "parm 0 vt %x\n", pFuncDesc->lprgelemdescParam[0].tdesc.vt);
390 ok(U(pFuncDesc->lprgelemdescParam[0]).paramdesc.wParamFlags == PARAMFLAG_NONE, "parm 0 flags %x\n", U(pFuncDesc->lprgelemdescParam[0]).paramdesc.wParamFlags);
391
392 ok(pFuncDesc->lprgelemdescParam[1].tdesc.vt == VT_BSTR, "parm 1 vt %x\n", pFuncDesc->lprgelemdescParam[1].tdesc.vt);
393 ok(U(pFuncDesc->lprgelemdescParam[1]).paramdesc.wParamFlags == PARAMFLAG_NONE, "parm 1 flags %x\n", U(pFuncDesc->lprgelemdescParam[1]).paramdesc.wParamFlags);
394 ITypeInfo_ReleaseFuncDesc(pTI2, pFuncDesc);
395
396 hr = ITypeInfo_GetFuncDesc(pTI2, 1, &pFuncDesc);
397 ok(hr == S_OK, "hr %08x\n", hr);
398 ok(pFuncDesc->funckind == FUNC_VIRTUAL, "funckind %d\n", pFuncDesc->funckind);
399 ok(pFuncDesc->invkind == methdata[1].wFlags, "invkind %d\n", pFuncDesc->invkind);
400 ok(pFuncDesc->callconv == methdata[1].cc, "callconv %d\n", pFuncDesc->callconv);
401 ok(pFuncDesc->cParams == methdata[1].cArgs, "cParams %d\n", pFuncDesc->cParams);
402 ok(pFuncDesc->oVft == sizeof(void *), "oVft %d\n", pFuncDesc->oVft);
403 ok(pFuncDesc->wFuncFlags == 0, "oVft %d\n", pFuncDesc->wFuncFlags);
404 ok(pFuncDesc->elemdescFunc.tdesc.vt == VT_I4, "ret vt %x\n", pFuncDesc->elemdescFunc.tdesc.vt);
405 ITypeInfo_ReleaseFuncDesc(pTI2, pFuncDesc);
406
407 hr = ITypeInfo_GetFuncDesc(pTI2, 2, &pFuncDesc);
408 ok(hr == S_OK, "hr %08x\n", hr);
409 ok(pFuncDesc->funckind == FUNC_VIRTUAL, "funckind %d\n", pFuncDesc->funckind);
410 ok(pFuncDesc->invkind == methdata[2].wFlags, "invkind %d\n", pFuncDesc->invkind);
411 ok(pFuncDesc->callconv == methdata[2].cc, "callconv %d\n", pFuncDesc->callconv);
412 ok(pFuncDesc->cParams == methdata[2].cArgs, "cParams %d\n", pFuncDesc->cParams);
413 ok(pFuncDesc->oVft == 3 * sizeof(void *), "oVft %d\n", pFuncDesc->oVft);
414 ok(pFuncDesc->wFuncFlags == 0, "oVft %d\n", pFuncDesc->wFuncFlags);
415 ok(pFuncDesc->elemdescFunc.tdesc.vt == VT_HRESULT, "ret vt %x\n", pFuncDesc->elemdescFunc.tdesc.vt);
416 ok(pFuncDesc->lprgelemdescParam[0].tdesc.vt == VT_I4, "parm 0 vt %x\n", pFuncDesc->lprgelemdescParam[0].tdesc.vt);
417 ok(U(pFuncDesc->lprgelemdescParam[0]).paramdesc.wParamFlags == PARAMFLAG_NONE, "parm 0 flags %x\n", U(pFuncDesc->lprgelemdescParam[0]).paramdesc.wParamFlags);
418 ITypeInfo_ReleaseFuncDesc(pTI2, pFuncDesc);
419
420 hr = ITypeInfo_GetFuncDesc(pTI2, 3, &pFuncDesc);
421 ok(hr == S_OK, "hr %08x\n", hr);
422 ok(pFuncDesc->funckind == FUNC_VIRTUAL, "funckind %d\n", pFuncDesc->funckind);
423 ok(pFuncDesc->invkind == methdata[3].wFlags, "invkind %d\n", pFuncDesc->invkind);
424 ok(pFuncDesc->callconv == methdata[3].cc, "callconv %d\n", pFuncDesc->callconv);
425 ok(pFuncDesc->cParams == methdata[3].cArgs, "cParams %d\n", pFuncDesc->cParams);
426 ok(pFuncDesc->oVft == 4 * sizeof(void *), "oVft %d\n", pFuncDesc->oVft);
427 ok(pFuncDesc->wFuncFlags == 0, "oVft %d\n", pFuncDesc->wFuncFlags);
428 ok(pFuncDesc->elemdescFunc.tdesc.vt == VT_I4, "ret vt %x\n", pFuncDesc->elemdescFunc.tdesc.vt);
429 ITypeInfo_ReleaseFuncDesc(pTI2, pFuncDesc);
430
431 /* test GetIDsOfNames on a coclass to see if it searches its interfaces */
432 hr = ITypeInfo_GetIDsOfNames(pTypeInfo, &name, 1, &memid);
433 ok(hr == S_OK, "hr 0x%08x\n", hr);
434 ok(memid == 0x123, "memid 0x%08x\n", memid);
435
436 ITypeInfo_Release(pTI2);
437 ITypeInfo_Release(pTypeInfo);
438
439 SysFreeString(parms1[0].szName);
440 SysFreeString(parms1[1].szName);
441 SysFreeString(parms3[0].szName);
442 SysFreeString(methdata[0].szName);
443 SysFreeString(methdata[1].szName);
444 SysFreeString(methdata[2].szName);
445 SysFreeString(methdata[3].szName);
446 }
447
448 static void test_TypeInfo(void)
449 {
450 ITypeLib *pTypeLib;
451 ITypeInfo *pTypeInfo;
452 HRESULT hr;
453 static WCHAR wszBogus[] = { 'b','o','g','u','s',0 };
454 static WCHAR wszGetTypeInfo[] = { 'G','e','t','T','y','p','e','I','n','f','o',0 };
455 static WCHAR wszClone[] = {'C','l','o','n','e',0};
456 OLECHAR* bogus = wszBogus;
457 OLECHAR* pwszGetTypeInfo = wszGetTypeInfo;
458 OLECHAR* pwszClone = wszClone;
459 DISPID dispidMember;
460 DISPPARAMS dispparams;
461
462 hr = LoadTypeLib(wszStdOle2, &pTypeLib);
463 ok_ole_success(hr, LoadTypeLib);
464
465 hr = ITypeLib_GetTypeInfoOfGuid(pTypeLib, &IID_IFont, &pTypeInfo);
466 ok_ole_success(hr, ITypeLib_GetTypeInfoOfGuid);
467
468 /* test nonexistent method name */
469 hr = ITypeInfo_GetIDsOfNames(pTypeInfo, &bogus, 1, &dispidMember);
470 ok(hr == DISP_E_UNKNOWNNAME,
471 "ITypeInfo_GetIDsOfNames should have returned DISP_E_UNKNOWNNAME instead of 0x%08x\n",
472 hr);
473
474 /* test invalid memberid */
475 dispparams.cNamedArgs = 0;
476 dispparams.cArgs = 0;
477 dispparams.rgdispidNamedArgs = NULL;
478 dispparams.rgvarg = NULL;
479 hr = ITypeInfo_Invoke(pTypeInfo, (void *)0xdeadbeef, 0xdeadbeef, DISPATCH_METHOD, &dispparams, NULL, NULL, NULL);
480 ok(hr == DISP_E_MEMBERNOTFOUND, "ITypeInfo_Invoke should have returned DISP_E_MEMBERNOTFOUND instead of 0x%08x\n", hr);
481
482 hr = ITypeInfo_GetIDsOfNames(pTypeInfo, &pwszClone, 1, &dispidMember);
483 ok_ole_success(hr, ITypeInfo_GetIDsOfNames);
484
485 /* test correct memberid, but wrong flags */
486 hr = ITypeInfo_Invoke(pTypeInfo, (void *)0xdeadbeef, dispidMember, DISPATCH_PROPERTYGET, &dispparams, NULL, NULL, NULL);
487 ok(hr == DISP_E_MEMBERNOTFOUND, "ITypeInfo_Invoke should have returned DISP_E_MEMBERNOTFOUND instead of 0x%08x\n", hr);
488
489 /* test NULL dispparams */
490 hr = ITypeInfo_Invoke(pTypeInfo, (void *)0xdeadbeef, dispidMember, DISPATCH_METHOD, NULL, NULL, NULL, NULL);
491 ok(hr == E_INVALIDARG, "ITypeInfo_Invoke should have returned E_INVALIDARG instead of 0x%08x\n", hr);
492
493 /* test dispparams->cNamedArgs being bigger than dispparams->cArgs */
494 dispparams.cNamedArgs = 1;
495 hr = ITypeInfo_Invoke(pTypeInfo, (void *)0xdeadbeef, dispidMember, DISPATCH_METHOD, &dispparams, NULL, NULL, NULL);
496 ok(hr == E_INVALIDARG, "ITypeInfo_Invoke should have returned E_INVALIDARG instead of 0x%08x\n", hr);
497
498 ITypeInfo_Release(pTypeInfo);
499
500 hr = ITypeLib_GetTypeInfoOfGuid(pTypeLib, &IID_IDispatch, &pTypeInfo);
501 ok_ole_success(hr, ITypeLib_GetTypeInfoOfGuid);
502
503 hr = ITypeInfo_GetIDsOfNames(pTypeInfo, &pwszGetTypeInfo, 1, &dispidMember);
504 ok_ole_success(hr, ITypeInfo_GetIDsOfNames);
505
506 /* test invoking a method with a [restricted] keyword */
507 hr = ITypeInfo_Invoke(pTypeInfo, NULL, dispidMember, DISPATCH_METHOD, &dispparams, NULL, NULL, NULL);
508 todo_wine {
509 ok(hr == DISP_E_MEMBERNOTFOUND, "ITypeInfo_Invoke should have returned DISP_E_MEMBERNOTFOUND instead of 0x%08x\n", hr);
510 }
511
512 ITypeInfo_Release(pTypeInfo);
513 ITypeLib_Release(pTypeLib);
514 }
515
516 /* RegDeleteTreeW from dlls/advapi32/registry.c */
517 static LSTATUS myRegDeleteTreeW(HKEY hKey, LPCWSTR lpszSubKey)
518 {
519 LONG ret;
520 DWORD dwMaxSubkeyLen, dwMaxValueLen;
521 DWORD dwMaxLen, dwSize;
522 WCHAR szNameBuf[MAX_PATH], *lpszName = szNameBuf;
523 HKEY hSubKey = hKey;
524
525 if(lpszSubKey)
526 {
527 ret = RegOpenKeyExW(hKey, lpszSubKey, 0, KEY_READ, &hSubKey);
528 if (ret) return ret;
529 }
530
531 ret = RegQueryInfoKeyW(hSubKey, NULL, NULL, NULL, NULL,
532 &dwMaxSubkeyLen, NULL, NULL, &dwMaxValueLen, NULL, NULL, NULL);
533 if (ret) goto cleanup;
534
535 dwMaxSubkeyLen++;
536 dwMaxValueLen++;
537 dwMaxLen = max(dwMaxSubkeyLen, dwMaxValueLen);
538 if (dwMaxLen > sizeof(szNameBuf)/sizeof(WCHAR))
539 {
540 /* Name too big: alloc a buffer for it */
541 if (!(lpszName = HeapAlloc( GetProcessHeap(), 0, dwMaxLen*sizeof(WCHAR))))
542 {
543 ret = ERROR_NOT_ENOUGH_MEMORY;
544 goto cleanup;
545 }
546 }
547
548 /* Recursively delete all the subkeys */
549 while (TRUE)
550 {
551 dwSize = dwMaxLen;
552 if (RegEnumKeyExW(hSubKey, 0, lpszName, &dwSize, NULL,
553 NULL, NULL, NULL)) break;
554
555 ret = myRegDeleteTreeW(hSubKey, lpszName);
556 if (ret) goto cleanup;
557 }
558
559 if (lpszSubKey)
560 ret = RegDeleteKeyW(hKey, lpszSubKey);
561 else
562 while (TRUE)
563 {
564 dwSize = dwMaxLen;
565 if (RegEnumValueW(hKey, 0, lpszName, &dwSize,
566 NULL, NULL, NULL, NULL)) break;
567
568 ret = RegDeleteValueW(hKey, lpszName);
569 if (ret) goto cleanup;
570 }
571
572 cleanup:
573 if (lpszName != szNameBuf)
574 HeapFree(GetProcessHeap(), 0, lpszName);
575 if(lpszSubKey)
576 RegCloseKey(hSubKey);
577 return ret;
578 }
579
580 static BOOL do_typelib_reg_key(GUID *uid, WORD maj, WORD min, LPCWSTR base, BOOL remove)
581 {
582 static const WCHAR typelibW[] = {'T','y','p','e','l','i','b','\\',0};
583 static const WCHAR formatW[] = {'\\','%','u','.','%','u','\\','0','\\','w','i','n','3','2',0};
584 static const WCHAR format2W[] = {'%','s','_','%','u','_','%','u','.','d','l','l',0};
585 WCHAR buf[128];
586 HKEY hkey;
587 BOOL ret = TRUE;
588 DWORD res;
589
590 memcpy(buf, typelibW, sizeof(typelibW));
591 StringFromGUID2(uid, buf + lstrlenW(buf), 40);
592
593 if (remove)
594 {
595 ok(myRegDeleteTreeW(HKEY_CLASSES_ROOT, buf) == ERROR_SUCCESS, "SHDeleteKey failed\n");
596 return TRUE;
597 }
598
599 wsprintfW(buf + lstrlenW(buf), formatW, maj, min );
600
601 SetLastError(0xdeadbeef);
602 res = RegCreateKeyExW(HKEY_CLASSES_ROOT, buf, 0, NULL, 0,
603 KEY_WRITE, NULL, &hkey, NULL);
604 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
605 {
606 win_skip("W-calls are not implemented\n");
607 return FALSE;
608 }
609
610 if (res != ERROR_SUCCESS)
611 {
612 trace("RegCreateKeyExW failed\n");
613 return FALSE;
614 }
615
616 wsprintfW(buf, format2W, base, maj, min);
617 if (RegSetValueExW(hkey, NULL, 0, REG_SZ,
618 (BYTE *)buf, (lstrlenW(buf) + 1) * sizeof(WCHAR)) != ERROR_SUCCESS)
619 {
620 trace("RegSetValueExW failed\n");
621 ret = FALSE;
622 }
623 RegCloseKey(hkey);
624 return ret;
625 }
626
627 static void test_QueryPathOfRegTypeLib(void)
628 {
629 static const struct test_data
630 {
631 WORD maj, min;
632 HRESULT ret;
633 const WCHAR path[16];
634 } td[] = {
635 { 1, 0, TYPE_E_LIBNOTREGISTERED, { 0 } },
636 { 3, 0, S_OK, {'f','a','k','e','_','3','_','0','.','d','l','l',0 } },
637 { 3, 1, S_OK, {'f','a','k','e','_','3','_','1','.','d','l','l',0 } },
638 { 3, 22, S_OK, {'f','a','k','e','_','3','_','3','7','.','d','l','l',0 } },
639 { 3, 37, S_OK, {'f','a','k','e','_','3','_','3','7','.','d','l','l',0 } },
640 { 3, 40, S_OK, {'f','a','k','e','_','3','_','3','7','.','d','l','l',0 } },
641 { 0xffff, 0xffff, S_OK, {'f','a','k','e','_','5','_','3','7','.','d','l','l',0 } },
642 { 0xffff, 0, TYPE_E_LIBNOTREGISTERED, { 0 } },
643 { 3, 0xffff, TYPE_E_LIBNOTREGISTERED, { 0 } },
644 { 5, 0xffff, TYPE_E_LIBNOTREGISTERED, { 0 } },
645 { 4, 0, TYPE_E_LIBNOTREGISTERED, { 0 } }
646 };
647 static const WCHAR base[] = {'f','a','k','e',0};
648 UINT i;
649 RPC_STATUS status;
650 GUID uid;
651 WCHAR uid_str[40];
652 HRESULT ret;
653 BSTR path;
654
655 status = UuidCreate(&uid);
656 ok(!status || status == RPC_S_UUID_LOCAL_ONLY, "UuidCreate error %08x\n", status);
657
658 StringFromGUID2(&uid, uid_str, 40);
659 /*trace("GUID: %s\n", wine_dbgstr_w(uid_str));*/
660
661 if (!do_typelib_reg_key(&uid, 3, 0, base, 0)) return;
662 if (!do_typelib_reg_key(&uid, 3, 1, base, 0)) return;
663 if (!do_typelib_reg_key(&uid, 3, 37, base, 0)) return;
664 if (!do_typelib_reg_key(&uid, 5, 37, base, 0)) return;
665
666 for (i = 0; i < sizeof(td)/sizeof(td[0]); i++)
667 {
668 ret = QueryPathOfRegTypeLib(&uid, td[i].maj, td[i].min, 0, &path);
669 ok(ret == td[i].ret, "QueryPathOfRegTypeLib(%u.%u) returned %08x\n", td[i].maj, td[i].min, ret);
670 if (ret == S_OK)
671 {
672 ok(!lstrcmpW(td[i].path, path), "typelib %u.%u path doesn't match\n", td[i].maj, td[i].min);
673 SysFreeString(path);
674 }
675 }
676
677 do_typelib_reg_key(&uid, 0, 0, NULL, 1);
678 }
679
680 static void test_inheritance(void)
681 {
682 HRESULT hr;
683 ITypeLib *pTL;
684 ITypeInfo *pTI, *pTI_p;
685 TYPEATTR *pTA;
686 HREFTYPE href;
687 FUNCDESC *pFD;
688 WCHAR path[MAX_PATH];
689 CHAR pathA[MAX_PATH];
690 static const WCHAR tl_path[] = {'.','\\','m','i','d','l','_','t','m','a','r','s','h','a','l','.','t','l','b',0};
691
692 BOOL use_midl_tlb = 0;
693
694 GetModuleFileNameA(NULL, pathA, MAX_PATH);
695 MultiByteToWideChar(CP_ACP, 0, pathA, -1, path, MAX_PATH);
696
697 if(use_midl_tlb)
698 memcpy(path, tl_path, sizeof(tl_path));
699
700 hr = LoadTypeLib(path, &pTL);
701 if(FAILED(hr)) return;
702
703
704 /* ItestIF3 is a syntax 2 dispinterface */
705 hr = ITypeLib_GetTypeInfoOfGuid(pTL, &DIID_ItestIF3, &pTI);
706 ok(hr == S_OK, "hr %08x\n", hr);
707
708 hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
709 ok(hr == S_OK, "hr %08x\n", hr);
710 ok(pTA->typekind == TKIND_DISPATCH, "kind %04x\n", pTA->typekind);
711 ok(pTA->cbSizeVft == 7 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
712 ok(pTA->wTypeFlags == TYPEFLAG_FDISPATCHABLE, "typeflags %x\n", pTA->wTypeFlags);
713 if(use_midl_tlb) {
714 ok(pTA->cFuncs == 6, "cfuncs %d\n", pTA->cFuncs);
715 ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
716 ITypeInfo_ReleaseTypeAttr(pTI, pTA);
717
718 hr = ITypeInfo_GetRefTypeOfImplType(pTI, 0, &href);
719 ok(hr == S_OK, "hr %08x\n", hr);
720 hr = ITypeInfo_GetRefTypeInfo(pTI, href, &pTI_p);
721 ok(hr == S_OK, "hr %08x\n", hr);
722 hr = ITypeInfo_GetTypeAttr(pTI_p, &pTA);
723 ok(IsEqualGUID(&pTA->guid, &IID_IDispatch), "guid {%08x-....\n", pTA->guid.Data1);
724 ITypeInfo_ReleaseTypeAttr(pTI_p, pTA);
725 ITypeInfo_Release(pTI_p);
726
727 /* Should have six methods */
728 hr = ITypeInfo_GetFuncDesc(pTI, 6, &pFD);
729 ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr);
730 hr = ITypeInfo_GetFuncDesc(pTI, 5, &pFD);
731 ok(hr == S_OK, "hr %08x\n", hr);
732 ok(pFD->memid == 0x60020000, "memid %08x\n", pFD->memid);
733 ok(pFD->oVft == 5 * sizeof(void *), "oVft %d\n", pFD->oVft);
734 ITypeInfo_ReleaseFuncDesc(pTI, pFD);
735 }
736 ITypeInfo_Release(pTI);
737
738
739 /* ItestIF4 is a syntax 1 dispinterface */
740 hr = ITypeLib_GetTypeInfoOfGuid(pTL, &DIID_ItestIF4, &pTI);
741 ok(hr == S_OK, "hr %08x\n", hr);
742
743 hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
744 ok(hr == S_OK, "hr %08x\n", hr);
745 ok(pTA->typekind == TKIND_DISPATCH, "kind %04x\n", pTA->typekind);
746 ok(pTA->cbSizeVft == 7 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
747 ok(pTA->wTypeFlags == TYPEFLAG_FDISPATCHABLE, "typeflags %x\n", pTA->wTypeFlags);
748 ok(pTA->cFuncs == 1, "cfuncs %d\n", pTA->cFuncs);
749 ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
750 ITypeInfo_ReleaseTypeAttr(pTI, pTA);
751
752 hr = ITypeInfo_GetRefTypeOfImplType(pTI, 0, &href);
753 ok(hr == S_OK, "hr %08x\n", hr);
754 hr = ITypeInfo_GetRefTypeInfo(pTI, href, &pTI_p);
755 ok(hr == S_OK, "hr %08x\n", hr);
756 hr = ITypeInfo_GetTypeAttr(pTI_p, &pTA);
757 ok(IsEqualGUID(&pTA->guid, &IID_IDispatch), "guid {%08x-....\n", pTA->guid.Data1);
758 ITypeInfo_ReleaseTypeAttr(pTI_p, pTA);
759 ITypeInfo_Release(pTI_p);
760 hr = ITypeInfo_GetFuncDesc(pTI, 1, &pFD);
761 ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr);
762 hr = ITypeInfo_GetFuncDesc(pTI, 0, &pFD);
763 ok(hr == S_OK, "hr %08x\n", hr);
764 ok(pFD->memid == 0x1c, "memid %08x\n", pFD->memid);
765 ITypeInfo_ReleaseFuncDesc(pTI, pFD);
766 ITypeInfo_Release(pTI);
767
768
769 /* ItestIF5 is dual with inherited ifaces which derive from IUnknown but not IDispatch */
770 hr = ITypeLib_GetTypeInfoOfGuid(pTL, &IID_ItestIF5, &pTI);
771 ok(hr == S_OK, "hr %08x\n", hr);
772
773 hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
774 ok(hr == S_OK, "hr %08x\n", hr);
775 if (hr == S_OK)
776 {
777 ok(pTA->typekind == TKIND_DISPATCH, "kind %04x\n", pTA->typekind);
778 ok(pTA->cbSizeVft == 7 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
779 if(use_midl_tlb) {
780 ok(pTA->wTypeFlags == TYPEFLAG_FDUAL, "typeflags %x\n", pTA->wTypeFlags);
781 }
782 ok(pTA->cFuncs == 8, "cfuncs %d\n", pTA->cFuncs);
783 ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
784 ITypeInfo_ReleaseTypeAttr(pTI, pTA);
785 }
786 hr = ITypeInfo_GetRefTypeOfImplType(pTI, 0, &href);
787 ok(hr == S_OK, "hr %08x\n", hr);
788 hr = ITypeInfo_GetRefTypeInfo(pTI, href, &pTI_p);
789 ok(hr == S_OK, "hr %08x\n", hr);
790 hr = ITypeInfo_GetTypeAttr(pTI_p, &pTA);
791 ok(IsEqualGUID(&pTA->guid, &IID_IDispatch), "guid {%08x-....\n", pTA->guid.Data1);
792 ITypeInfo_ReleaseTypeAttr(pTI_p, pTA);
793 ITypeInfo_Release(pTI_p);
794 if(use_midl_tlb) {
795 hr = ITypeInfo_GetFuncDesc(pTI, 6, &pFD);
796 ok(hr == S_OK, "hr %08x\n", hr);
797 ok(pFD->memid == 0x1234, "memid %08x\n", pFD->memid);
798 ITypeInfo_ReleaseFuncDesc(pTI, pFD);
799 }
800 ITypeInfo_Release(pTI);
801
802 /* ItestIF7 is dual with inherited ifaces which derive from Dispatch */
803 hr = ITypeLib_GetTypeInfoOfGuid(pTL, &IID_ItestIF7, &pTI);
804 ok(hr == S_OK, "hr %08x\n", hr);
805
806 hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
807 ok(hr == S_OK, "hr %08x\n", hr);
808 ok(pTA->typekind == TKIND_DISPATCH, "kind %04x\n", pTA->typekind);
809 ok(pTA->cbSizeVft == 7 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
810 ok(pTA->wTypeFlags == (TYPEFLAG_FDISPATCHABLE|TYPEFLAG_FDUAL), "typeflags %x\n", pTA->wTypeFlags);
811 ok(pTA->cFuncs == 10, "cfuncs %d\n", pTA->cFuncs);
812 ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
813 ITypeInfo_ReleaseTypeAttr(pTI, pTA);
814
815 hr = ITypeInfo_GetRefTypeOfImplType(pTI, 0, &href);
816 ok(hr == S_OK, "hr %08x\n", hr);
817 hr = ITypeInfo_GetRefTypeInfo(pTI, href, &pTI_p);
818 ok(hr == S_OK, "hr %08x\n", hr);
819 hr = ITypeInfo_GetTypeAttr(pTI_p, &pTA);
820 ok(IsEqualGUID(&pTA->guid, &IID_IDispatch), "guid {%08x-....\n", pTA->guid.Data1);
821 ITypeInfo_ReleaseTypeAttr(pTI_p, pTA);
822 ITypeInfo_Release(pTI_p);
823
824 hr = ITypeInfo_GetFuncDesc(pTI, 9, &pFD);
825 ok(hr == S_OK, "hr %08x\n", hr);
826 ok(pFD->memid == 0x1236, "memid %08x\n", pFD->memid);
827 ITypeInfo_ReleaseFuncDesc(pTI, pFD);
828 ITypeInfo_Release(pTI);
829
830 /* ItestIF10 is a syntax 2 dispinterface which doesn't derive from IUnknown */
831 hr = ITypeLib_GetTypeInfoOfGuid(pTL, &DIID_ItestIF10, &pTI);
832 ok(hr == S_OK, "hr %08x\n", hr);
833
834 hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
835 ok(hr == S_OK, "hr %08x\n", hr);
836 ok(pTA->typekind == TKIND_DISPATCH, "kind %04x\n", pTA->typekind);
837 ok(pTA->cbSizeVft == 7 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
838 ok(pTA->wTypeFlags == TYPEFLAG_FDISPATCHABLE, "typeflags %x\n", pTA->wTypeFlags);
839 if(use_midl_tlb) {
840 ok(pTA->cFuncs == 3, "cfuncs %d\n", pTA->cFuncs);
841 ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
842 ITypeInfo_ReleaseTypeAttr(pTI, pTA);
843
844 hr = ITypeInfo_GetRefTypeOfImplType(pTI, -1, &href);
845 ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr);
846 hr = ITypeInfo_GetRefTypeOfImplType(pTI, 0, &href);
847 ok(hr == S_OK, "hr %08x\n", hr);
848 hr = ITypeInfo_GetRefTypeInfo(pTI, href, &pTI_p);
849 ok(hr == S_OK, "hr %08x\n", hr);
850 hr = ITypeInfo_GetTypeAttr(pTI_p, &pTA);
851 ok(IsEqualGUID(&pTA->guid, &IID_IDispatch), "guid {%08x-....\n", pTA->guid.Data1);
852 ITypeInfo_ReleaseTypeAttr(pTI_p, pTA);
853 ITypeInfo_Release(pTI_p);
854
855 /* Should have three methods */
856 hr = ITypeInfo_GetFuncDesc(pTI, 3, &pFD);
857 ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr);
858 hr = ITypeInfo_GetFuncDesc(pTI, 2, &pFD);
859 ok(hr == S_OK, "hr %08x\n", hr);
860 ok(pFD->memid == 0x60010000, "memid %08x\n", pFD->memid);
861 ok(pFD->oVft == 2 * sizeof(void *), "oVft %d\n", pFD->oVft);
862 ITypeInfo_ReleaseFuncDesc(pTI, pFD);
863 }
864 ITypeInfo_Release(pTI);
865
866 /* ItestIF11 is a syntax 2 dispinterface which derives from IDispatch */
867 hr = ITypeLib_GetTypeInfoOfGuid(pTL, &DIID_ItestIF11, &pTI);
868 ok(hr == S_OK, "hr %08x\n", hr);
869
870 hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
871 ok(hr == S_OK, "hr %08x\n", hr);
872 ok(pTA->typekind == TKIND_DISPATCH, "kind %04x\n", pTA->typekind);
873 ok(pTA->cbSizeVft == 7 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
874 ok(pTA->wTypeFlags == TYPEFLAG_FDISPATCHABLE, "typeflags %x\n", pTA->wTypeFlags);
875 if(use_midl_tlb) {
876 ok(pTA->cFuncs == 10, "cfuncs %d\n", pTA->cFuncs);
877 ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
878 ITypeInfo_ReleaseTypeAttr(pTI, pTA);
879
880 hr = ITypeInfo_GetRefTypeOfImplType(pTI, 0, &href);
881 ok(hr == S_OK, "hr %08x\n", hr);
882 hr = ITypeInfo_GetRefTypeInfo(pTI, href, &pTI_p);
883 ok(hr == S_OK, "hr %08x\n", hr);
884 hr = ITypeInfo_GetTypeAttr(pTI_p, &pTA);
885 ok(IsEqualGUID(&pTA->guid, &IID_IDispatch), "guid {%08x-....\n", pTA->guid.Data1);
886 ITypeInfo_ReleaseTypeAttr(pTI_p, pTA);
887 ITypeInfo_Release(pTI_p);
888
889 /* Should have ten methods */
890 hr = ITypeInfo_GetFuncDesc(pTI, 10, &pFD);
891 ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr);
892 hr = ITypeInfo_GetFuncDesc(pTI, 9, &pFD);
893 ok(hr == S_OK, "hr %08x\n", hr);
894 ok(pFD->memid == 0x1236, "memid %08x\n", pFD->memid);
895 ok(pFD->oVft == 9 * sizeof(void *), "oVft %d\n", pFD->oVft);
896 ITypeInfo_ReleaseFuncDesc(pTI, pFD);
897 }
898 ITypeInfo_Release(pTI);
899
900
901 /* ItestIF2 is an interface which derives from IUnknown */
902 hr = ITypeLib_GetTypeInfoOfGuid(pTL, &IID_ItestIF2, &pTI);
903 ok(hr == S_OK, "hr %08x\n", hr);
904
905 hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
906 ok(hr == S_OK, "hr %08x\n", hr);
907 ok(pTA->typekind == TKIND_INTERFACE, "kind %04x\n", pTA->typekind);
908 ok(pTA->cbSizeVft == 6 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
909 ok(pTA->wTypeFlags == 0, "typeflags %x\n", pTA->wTypeFlags);
910 if(use_midl_tlb) {
911 ok(pTA->cFuncs == 1, "cfuncs %d\n", pTA->cFuncs);
912 ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
913 ITypeInfo_ReleaseTypeAttr(pTI, pTA);
914
915 /* Should have one method */
916 hr = ITypeInfo_GetFuncDesc(pTI, 1, &pFD);
917 ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr);
918 hr = ITypeInfo_GetFuncDesc(pTI, 0, &pFD);
919 ok(hr == S_OK, "hr %08x\n", hr);
920 ok(pFD->memid == 0x60020000, "memid %08x\n", pFD->memid);
921 ok(pFD->oVft == 5 * sizeof(void *), "oVft %d\n", pFD->oVft);
922 ITypeInfo_ReleaseFuncDesc(pTI, pFD);
923 }
924 ITypeInfo_Release(pTI);
925
926 ITypeLib_Release(pTL);
927
928 return;
929 }
930
931 #if 0 /* use this to generate more tests */
932
933 #define OLE_CHECK(x) { HRESULT hr = x; if (FAILED(hr)) { printf(#x "failed - %x\n", hr); return; } }
934
935 static char *dump_string(LPWSTR wstr)
936 {
937 int size = lstrlenW(wstr)+3;
938 char *out = CoTaskMemAlloc(size);
939 WideCharToMultiByte(20127, 0, wstr, -1, out+1, size, NULL, NULL);
940 out[0] = '\"';
941 strcat(out, "\"");
942 return out;
943 }
944
945 struct map_entry
946 {
947 DWORD value;
948 const char *name;
949 };
950
951 #define MAP_ENTRY(x) { x, #x }
952 static const struct map_entry tkind_map[] = {
953 MAP_ENTRY(TKIND_ENUM),
954 MAP_ENTRY(TKIND_RECORD),
955 MAP_ENTRY(TKIND_MODULE),
956 MAP_ENTRY(TKIND_INTERFACE),
957 MAP_ENTRY(TKIND_DISPATCH),
958 MAP_ENTRY(TKIND_COCLASS),
959 MAP_ENTRY(TKIND_ALIAS),
960 MAP_ENTRY(TKIND_UNION),
961 MAP_ENTRY(TKIND_MAX),
962 {0, NULL}
963 };
964
965 static const struct map_entry funckind_map[] = {
966 MAP_ENTRY(FUNC_VIRTUAL),
967 MAP_ENTRY(FUNC_PUREVIRTUAL),
968 MAP_ENTRY(FUNC_NONVIRTUAL),
969 MAP_ENTRY(FUNC_STATIC),
970 MAP_ENTRY(FUNC_DISPATCH),
971 {0, NULL}
972 };
973
974 static const struct map_entry invkind_map[] = {
975 MAP_ENTRY(INVOKE_FUNC),
976 MAP_ENTRY(INVOKE_PROPERTYGET),
977 MAP_ENTRY(INVOKE_PROPERTYPUT),
978 MAP_ENTRY(INVOKE_PROPERTYPUTREF),
979 {0, NULL}
980 };
981
982 #undef MAP_ENTRY
983
984 static const char *map_value(DWORD val, const struct map_entry *map)
985 {
986 static int map_id;
987 static char bufs[16][256];
988 char *buf;
989
990 while (map->name)
991 {
992 if (map->value == val)
993 return map->name;
994 map++;
995 }
996
997 buf = bufs[(map_id++)%16];
998 sprintf(buf, "0x%x", val);
999 return buf;
1000 }
1001
1002 static void test_dump_typelib(const char *name)
1003 {
1004 WCHAR wszString[260];
1005 ITypeInfo *info;
1006 ITypeLib *lib;
1007 int count;
1008 int i;
1009
1010 MultiByteToWideChar(CP_ACP, 0, name, -1, wszString, 260);
1011 OLE_CHECK(LoadTypeLib(wszString, &lib));
1012 count = ITypeLib_GetTypeInfoCount(lib);
1013 printf("/* interfaces count: %d */\n", count);
1014 for (i = 0; i < count; i++)
1015 {
1016 TYPEATTR *attr;
1017 BSTR name;
1018 int f = 0;
1019
1020 OLE_CHECK(ITypeLib_GetDocumentation(lib, i, &name, NULL, NULL, NULL));
1021 printf("{\n"
1022 " %s,\n", dump_string(name));
1023 SysFreeString(name);
1024
1025 OLE_CHECK(ITypeLib_GetTypeInfo(lib, i, &info));
1026 ITypeInfo_GetTypeAttr(info, &attr);
1027 printf(" /*kind*/ %s, /*flags*/ 0x%x, /*align*/ %d, /*size*/ %d,\n"
1028 " /*#vtbl*/ %d, /*#func*/ %d,\n"
1029 " {\n",
1030 map_value(attr->typekind, tkind_map), attr->wTypeFlags, attr->cbAlignment, attr->cbSizeInstance, attr->cbSizeVft,
1031 attr->cFuncs);
1032 ITypeInfo_ReleaseTypeAttr(info, attr);
1033 while (1)
1034 {
1035 FUNCDESC *desc;
1036 BSTR tab[256];
1037 UINT cNames;
1038 int p;
1039
1040 if (FAILED(ITypeInfo_GetFuncDesc(info, f, &desc)))
1041 break;
1042 printf(" {\n"
1043 " 0x%x, /*func*/ %s, /*inv*/ %s, /*call*/ 0x%x,\n",
1044 desc->memid, map_value(desc->funckind, funckind_map), map_value(desc->invkind, invkind_map),
1045 desc->callconv);
1046 printf(" /*#param*/ %d, /*#opt*/ %d, /*vtbl*/ %d, /*#scodes*/ %d, /*flags*/ 0x%x,\n",
1047 desc->cParams, desc->cParamsOpt, desc->oVft, desc->cScodes, desc->wFuncFlags);
1048 printf(" {%d, %x}, /* ret */\n", desc->elemdescFunc.tdesc.vt, desc->elemdescFunc.paramdesc.wParamFlags);
1049 printf(" { /* params */\n");
1050 for (p = 0; p < desc->cParams; p++)
1051 {
1052 ELEMDESC e = desc->lprgelemdescParam[p];
1053 printf(" {%d, %x},\n", e.tdesc.vt, e.paramdesc.wParamFlags);
1054 }
1055 printf(" {-1, -1}\n");
1056 printf(" },\n");
1057 printf(" { /* names */\n");
1058 OLE_CHECK(ITypeInfo_GetNames(info, desc->memid, tab, 256, &cNames));
1059 for (p = 0; p < cNames; p++)
1060 {
1061 printf(" %s,\n", dump_string(tab[p]));
1062 SysFreeString(tab[p]);
1063 }
1064 printf(" NULL,\n");
1065 printf(" },\n");
1066 printf(" },\n");
1067 ITypeInfo_ReleaseFuncDesc(info, desc);
1068 f++;
1069 }
1070 printf(" }\n");
1071 printf("},\n");
1072 ITypeInfo_Release(info);
1073 }
1074 ITypeLib_Release(lib);
1075 }
1076
1077 #else
1078
1079 typedef struct _element_info
1080 {
1081 VARTYPE vt;
1082 USHORT wParamFlags;
1083 } element_info;
1084
1085 typedef struct _function_info
1086 {
1087 MEMBERID memid;
1088 FUNCKIND funckind;
1089 INVOKEKIND invkind;
1090 CALLCONV callconv;
1091 short cParams;
1092 short cParamsOpt;
1093 short vtbl_index;
1094 short cScodes;
1095 WORD wFuncFlags;
1096 element_info ret_type;
1097 element_info params[15];
1098 LPCSTR names[15];
1099 } function_info;
1100
1101 typedef struct _interface_info
1102 {
1103 LPCSTR name;
1104 TYPEKIND type;
1105 WORD wTypeFlags;
1106 USHORT cbAlignment;
1107 USHORT cbSizeInstance;
1108 USHORT cbSizeVft;
1109 USHORT cFuncs;
1110 function_info funcs[20];
1111 } interface_info;
1112
1113 static const interface_info info[] = {
1114 /* interfaces count: 2 */
1115 {
1116 "IDualIface",
1117 /*kind*/ TKIND_DISPATCH, /*flags*/ 0x1040, /*align*/ 4, /*size*/ 4,
1118 /*#vtbl*/ 7, /*#func*/ 8,
1119 {
1120 {
1121 0x60000000, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1122 /*#param*/ 2, /*#opt*/ 0, /*vtbl*/ 0, /*#scodes*/ 0, /*flags*/ 0x1,
1123 {24, 0}, /* ret */
1124 { /* params */
1125 {26, 1},
1126 {26, 2},
1127 {-1, -1}
1128 },
1129 { /* names */
1130 "QueryInterface",
1131 "riid",
1132 "ppvObj",
1133 NULL,
1134 },
1135 },
1136 {
1137 0x60000001, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1138 /*#param*/ 0, /*#opt*/ 0, /*vtbl*/ 1, /*#scodes*/ 0, /*flags*/ 0x1,
1139 {19, 0}, /* ret */
1140 { /* params */
1141 {-1, -1}
1142 },
1143 { /* names */
1144 "AddRef",
1145 NULL,
1146 },
1147 },
1148 {
1149 0x60000002, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1150 /*#param*/ 0, /*#opt*/ 0, /*vtbl*/ 2, /*#scodes*/ 0, /*flags*/ 0x1,
1151 {19, 0}, /* ret */
1152 { /* params */
1153 {-1, -1}
1154 },
1155 { /* names */
1156 "Release",
1157 NULL,
1158 },
1159 },
1160 {
1161 0x60010000, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1162 /*#param*/ 1, /*#opt*/ 0, /*vtbl*/ 3, /*#scodes*/ 0, /*flags*/ 0x1,
1163 {24, 0}, /* ret */
1164 { /* params */
1165 {26, 2},
1166 {-1, -1}
1167 },
1168 { /* names */
1169 "GetTypeInfoCount",
1170 "pctinfo",
1171 NULL,
1172 },
1173 },
1174 {
1175 0x60010001, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1176 /*#param*/ 3, /*#opt*/ 0, /*vtbl*/ 4, /*#scodes*/ 0, /*flags*/ 0x1,
1177 {24, 0}, /* ret */
1178 { /* params */
1179 {23, 1},
1180 {19, 1},
1181 {26, 2},
1182 {-1, -1}
1183 },
1184 { /* names */
1185 "GetTypeInfo",
1186 "itinfo",
1187 "lcid",
1188 "pptinfo",
1189 NULL,
1190 },
1191 },
1192 {
1193 0x60010002, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1194 /*#param*/ 5, /*#opt*/ 0, /*vtbl*/ 5, /*#scodes*/ 0, /*flags*/ 0x1,
1195 {24, 0}, /* ret */
1196 { /* params */
1197 {26, 1},
1198 {26, 1},
1199 {23, 1},
1200 {19, 1},
1201 {26, 2},
1202 {-1, -1}
1203 },
1204 { /* names */
1205 "GetIDsOfNames",
1206 "riid",
1207 "rgszNames",
1208 "cNames",
1209 "lcid",
1210 "rgdispid",
1211 NULL,
1212 },
1213 },
1214 {
1215 0x60010003, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1216 /*#param*/ 8, /*#opt*/ 0, /*vtbl*/ 6, /*#scodes*/ 0, /*flags*/ 0x1,
1217 {24, 0}, /* ret */
1218 { /* params */
1219 {3, 1},
1220 {26, 1},
1221 {19, 1},
1222 {18, 1},
1223 {26, 1},
1224 {26, 2},
1225 {26, 2},
1226 {26, 2},
1227 {-1, -1}
1228 },
1229 { /* names */
1230 "Invoke",
1231 "dispidMember",
1232 "riid",
1233 "lcid",
1234 "wFlags",
1235 "pdispparams",
1236 "pvarResult",
1237 "pexcepinfo",
1238 "puArgErr",
1239 NULL,
1240 },
1241 },
1242 {
1243 0x60020000, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1244 /*#param*/ 0, /*#opt*/ 0, /*vtbl*/ 7, /*#scodes*/ 0, /*flags*/ 0x0,
1245 {24, 0}, /* ret */
1246 { /* params */
1247 {-1, -1}
1248 },
1249 { /* names */
1250 "Test",
1251 NULL,
1252 },
1253 },
1254 }
1255 },
1256 {
1257 "ISimpleIface",
1258 /*kind*/ TKIND_INTERFACE, /*flags*/ 0x1000, /*align*/ 4, /*size*/ 4,
1259 /*#vtbl*/ 8, /*#func*/ 1,
1260 {
1261 {
1262 0x60020000, /*func*/ FUNC_PUREVIRTUAL, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1263 /*#param*/ 0, /*#opt*/ 0, /*vtbl*/ 7, /*#scodes*/ 0, /*flags*/ 0x0,
1264 {25, 0}, /* ret */
1265 { /* params */
1266 {-1, -1}
1267 },
1268 { /* names */
1269 "Test",
1270 NULL,
1271 },
1272 },
1273 }
1274 },
1275 };
1276
1277 #define check_type(elem, info) { \
1278 expect_int((elem)->tdesc.vt, (info)->vt); \
1279 expect_hex(U(*(elem)).paramdesc.wParamFlags, (info)->wParamFlags); \
1280 }
1281
1282 static void test_dump_typelib(const char *name)
1283 {
1284 WCHAR wszName[MAX_PATH];
1285 ITypeLib *typelib;
1286 int ifcount = sizeof(info)/sizeof(info[0]);
1287 int iface, func;
1288
1289 MultiByteToWideChar(CP_ACP, 0, name, -1, wszName, MAX_PATH);
1290 ole_check(LoadTypeLibEx(wszName, REGKIND_NONE, &typelib));
1291 expect_eq(ITypeLib_GetTypeInfoCount(typelib), ifcount, UINT, "%d");
1292 for (iface = 0; iface < ifcount; iface++)
1293 {
1294 const interface_info *if_info = &info[iface];
1295 ITypeInfo *typeinfo;
1296 TYPEATTR *typeattr;
1297 BSTR bstrIfName;
1298
1299 trace("Interface %s\n", if_info->name);
1300 ole_check(ITypeLib_GetTypeInfo(typelib, iface, &typeinfo));
1301 ole_check(ITypeLib_GetDocumentation(typelib, iface, &bstrIfName, NULL, NULL, NULL));
1302 expect_wstr_acpval(bstrIfName, if_info->name);
1303 SysFreeString(bstrIfName);
1304
1305 ole_check(ITypeInfo_GetTypeAttr(typeinfo, &typeattr));
1306 expect_int(typeattr->typekind, if_info->type);
1307 expect_hex(typeattr->wTypeFlags, if_info->wTypeFlags);
1308 expect_int(typeattr->cbAlignment, if_info->cbAlignment);
1309 expect_int(typeattr->cbSizeInstance, if_info->cbSizeInstance);
1310 expect_int(typeattr->cbSizeVft, if_info->cbSizeVft * sizeof(void*));
1311 expect_int(typeattr->cFuncs, if_info->cFuncs);
1312
1313 for (func = 0; func < typeattr->cFuncs; func++)
1314 {
1315 function_info *fn_info = (function_info *)&if_info->funcs[func];
1316 FUNCDESC *desc;
1317 BSTR namesTab[256];
1318 UINT cNames;
1319 int i;
1320
1321 trace("Function %s\n", fn_info->names[0]);
1322 ole_check(ITypeInfo_GetFuncDesc(typeinfo, func, &desc));
1323 expect_int(desc->memid, fn_info->memid);
1324 expect_int(desc->funckind, fn_info->funckind);
1325 expect_int(desc->invkind, fn_info->invkind);
1326 expect_int(desc->callconv, fn_info->callconv);
1327 expect_int(desc->cParams, fn_info->cParams);
1328 expect_int(desc->cParamsOpt, fn_info->cParamsOpt);
1329 ok( desc->oVft == fn_info->vtbl_index * sizeof(void*) ||
1330 broken(desc->oVft == fn_info->vtbl_index * 4), /* xp64 */
1331 "desc->oVft got %u\n", desc->oVft );
1332 expect_int(desc->cScodes, fn_info->cScodes);
1333 expect_int(desc->wFuncFlags, fn_info->wFuncFlags);
1334 ole_check(ITypeInfo_GetNames(typeinfo, desc->memid, namesTab, 256, &cNames));
1335 for (i = 0; i < cNames; i++)
1336 {
1337 expect_wstr_acpval(namesTab[i], fn_info->names[i]);
1338 SysFreeString(namesTab[i]);
1339 }
1340 expect_null(fn_info->names[cNames]);
1341
1342 check_type(&desc->elemdescFunc, &fn_info->ret_type);
1343 for (i = 0 ; i < desc->cParams; i++)
1344 {
1345 check_type(&desc->lprgelemdescParam[i], &fn_info->params[i]);
1346 }
1347 expect_int(fn_info->params[desc->cParams].vt, (VARTYPE)-1);
1348
1349 ITypeInfo_ReleaseFuncDesc(typeinfo, desc);
1350 }
1351
1352 ITypeInfo_ReleaseTypeAttr(typeinfo, typeattr);
1353 ITypeInfo_Release(typeinfo);
1354 }
1355 ITypeLib_Release(typelib);
1356 }
1357
1358 #endif
1359
1360 static const char *create_test_typelib(void)
1361 {
1362 static char filename[MAX_PATH];
1363 HANDLE file;
1364 HRSRC res;
1365 void *ptr;
1366 DWORD written;
1367
1368 GetTempFileNameA( ".", "tlb", 0, filename );
1369 file = CreateFile( filename, GENERIC_READ|GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, 0 );
1370 ok( file != INVALID_HANDLE_VALUE, "file creation failed\n" );
1371 if (file == INVALID_HANDLE_VALUE) return NULL;
1372 res = FindResource( GetModuleHandle(0), MAKEINTRESOURCE(2), "TYPELIB" );
1373 ok( res != 0, "couldn't find resource\n" );
1374 ptr = LockResource( LoadResource( GetModuleHandle(0), res ));
1375 WriteFile( file, ptr, SizeofResource( GetModuleHandle(0), res ), &written, NULL );
1376 ok( written == SizeofResource( GetModuleHandle(0), res ), "couldn't write resource\n" );
1377 CloseHandle( file );
1378 return filename;
1379 }
1380
1381 static void test_create_typelib_lcid(LCID lcid)
1382 {
1383 char filename[MAX_PATH];
1384 WCHAR name[MAX_PATH];
1385 HRESULT hr;
1386 ICreateTypeLib2 *tl;
1387 HANDLE file;
1388 DWORD msft_header[5]; /* five is enough for now */
1389 DWORD read;
1390
1391 GetTempFileNameA( ".", "tlb", 0, filename );
1392 MultiByteToWideChar(CP_ACP, 0, filename, -1, name, MAX_PATH);
1393
1394 hr = CreateTypeLib2(SYS_WIN32, name, &tl);
1395 ok(hr == S_OK, "got %08x\n", hr);
1396
1397 hr = ICreateTypeLib2_SetLcid(tl, lcid);
1398 ok(hr == S_OK, "got %08x\n", hr);
1399
1400 hr = ICreateTypeLib2_SaveAllChanges(tl);
1401 ICreateTypeLib2_Release(tl);
1402
1403 file = CreateFileA( filename, GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, 0 );
1404 ok( file != INVALID_HANDLE_VALUE, "file creation failed\n" );
1405
1406 ReadFile( file, msft_header, sizeof(msft_header), &read, NULL );
1407 ok(read == sizeof(msft_header), "read %d\n", read);
1408 CloseHandle( file );
1409
1410 ok(msft_header[0] == 0x5446534d, "got %08x\n", msft_header[0]);
1411 ok(msft_header[1] == 0x00010002, "got %08x\n", msft_header[1]);
1412 ok(msft_header[2] == 0xffffffff, "got %08x\n", msft_header[2]);
1413 ok(msft_header[3] == (lcid ? lcid : 0x409), "got %08x (lcid %08x)\n", msft_header[3], lcid);
1414 ok(msft_header[4] == lcid, "got %08x (lcid %08x)\n", msft_header[4], lcid);
1415
1416 DeleteFileA(filename);
1417 }
1418
1419 static void test_create_typelibs(void)
1420 {
1421 test_create_typelib_lcid(LOCALE_SYSTEM_DEFAULT);
1422 test_create_typelib_lcid(LOCALE_USER_DEFAULT);
1423 test_create_typelib_lcid(LOCALE_NEUTRAL);
1424
1425 test_create_typelib_lcid(0x009);
1426 test_create_typelib_lcid(0x409);
1427 test_create_typelib_lcid(0x809);
1428
1429 test_create_typelib_lcid(0x007);
1430 test_create_typelib_lcid(0x407);
1431 }
1432
1433 START_TEST(typelib)
1434 {
1435 const char *filename;
1436
1437 ref_count_test(wszStdOle2);
1438 test_TypeComp();
1439 test_CreateDispTypeInfo();
1440 test_TypeInfo();
1441 test_QueryPathOfRegTypeLib();
1442 test_inheritance();
1443
1444 if ((filename = create_test_typelib()))
1445 {
1446 test_dump_typelib( filename );
1447 DeleteFile( filename );
1448 }
1449
1450 test_create_typelibs();
1451
1452 }