crypt32: Remove test of a corner case that failed on older crypt32 versions.
[wine] / dlls / oleaut32 / tests / 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         { 4, 0, TYPE_E_LIBNOTREGISTERED, { 0 } }
642     };
643     static const WCHAR base[] = {'f','a','k','e',0};
644     UINT i;
645     RPC_STATUS status;
646     GUID uid;
647     WCHAR uid_str[40];
648     HRESULT ret;
649     BSTR path;
650
651     status = UuidCreate(&uid);
652     ok(!status || status == RPC_S_UUID_LOCAL_ONLY, "UuidCreate error %08x\n", status);
653
654     StringFromGUID2(&uid, uid_str, 40);
655     /*trace("GUID: %s\n", wine_dbgstr_w(uid_str));*/
656
657     if (!do_typelib_reg_key(&uid, 3, 0, base, 0)) return;
658     if (!do_typelib_reg_key(&uid, 3, 1, base, 0)) return;
659     if (!do_typelib_reg_key(&uid, 3, 37, base, 0)) return;
660
661     for (i = 0; i < sizeof(td)/sizeof(td[0]); i++)
662     {
663         ret = QueryPathOfRegTypeLib(&uid, td[i].maj, td[i].min, 0, &path);
664         ok(ret == td[i].ret, "QueryPathOfRegTypeLib(%u.%u) returned %08x\n", td[i].maj, td[i].min, ret);
665         if (ret == S_OK)
666         {
667             ok(!lstrcmpW(td[i].path, path), "typelib %u.%u path doesn't match\n", td[i].maj, td[i].min);
668             SysFreeString(path);
669         }
670     }
671
672     do_typelib_reg_key(&uid, 0, 0, NULL, 1);
673 }
674
675 static void test_inheritance(void)
676 {
677     HRESULT hr;
678     ITypeLib *pTL;
679     ITypeInfo *pTI, *pTI_p;
680     TYPEATTR *pTA;
681     HREFTYPE href;
682     FUNCDESC *pFD;
683     WCHAR path[MAX_PATH];
684     CHAR pathA[MAX_PATH];
685     static const WCHAR tl_path[] = {'.','\\','m','i','d','l','_','t','m','a','r','s','h','a','l','.','t','l','b',0};
686
687     BOOL use_midl_tlb = 0;
688
689     GetModuleFileNameA(NULL, pathA, MAX_PATH);
690     MultiByteToWideChar(CP_ACP, 0, pathA, -1, path, MAX_PATH);
691
692     if(use_midl_tlb)
693         memcpy(path, tl_path, sizeof(tl_path));
694
695     hr = LoadTypeLib(path, &pTL);
696     if(FAILED(hr)) return;
697
698
699     /* ItestIF3 is a syntax 2 dispinterface */
700     hr = ITypeLib_GetTypeInfoOfGuid(pTL, &DIID_ItestIF3, &pTI);
701     ok(hr == S_OK, "hr %08x\n", hr);
702
703     hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
704     ok(hr == S_OK, "hr %08x\n", hr);
705     ok(pTA->typekind == TKIND_DISPATCH, "kind %04x\n", pTA->typekind);
706     ok(pTA->cbSizeVft == 7 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
707     ok(pTA->wTypeFlags == TYPEFLAG_FDISPATCHABLE, "typeflags %x\n", pTA->wTypeFlags);
708 if(use_midl_tlb) {
709     ok(pTA->cFuncs == 6, "cfuncs %d\n", pTA->cFuncs);
710     ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
711     ITypeInfo_ReleaseTypeAttr(pTI, pTA);
712
713     hr = ITypeInfo_GetRefTypeOfImplType(pTI, 0, &href);
714     ok(hr == S_OK, "hr %08x\n", hr);
715     hr = ITypeInfo_GetRefTypeInfo(pTI, href, &pTI_p);
716     ok(hr == S_OK, "hr %08x\n", hr);
717     hr = ITypeInfo_GetTypeAttr(pTI_p, &pTA);
718     ok(IsEqualGUID(&pTA->guid, &IID_IDispatch), "guid {%08x-....\n", pTA->guid.Data1);
719     ITypeInfo_ReleaseTypeAttr(pTI_p, pTA);
720     ITypeInfo_Release(pTI_p);
721
722     /* Should have six methods */
723     hr = ITypeInfo_GetFuncDesc(pTI, 6, &pFD);
724     ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr);
725     hr = ITypeInfo_GetFuncDesc(pTI, 5, &pFD);
726     ok(hr == S_OK, "hr %08x\n", hr);
727     ok(pFD->memid == 0x60020000, "memid %08x\n", pFD->memid);
728     ok(pFD->oVft == 5 * sizeof(void *), "oVft %d\n", pFD->oVft);
729     ITypeInfo_ReleaseFuncDesc(pTI, pFD);
730 }
731     ITypeInfo_Release(pTI);
732
733
734     /* ItestIF4 is a syntax 1 dispinterface */
735     hr = ITypeLib_GetTypeInfoOfGuid(pTL, &DIID_ItestIF4, &pTI);
736     ok(hr == S_OK, "hr %08x\n", hr);
737
738     hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
739     ok(hr == S_OK, "hr %08x\n", hr);
740     ok(pTA->typekind == TKIND_DISPATCH, "kind %04x\n", pTA->typekind);
741     ok(pTA->cbSizeVft == 7 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
742     ok(pTA->wTypeFlags == TYPEFLAG_FDISPATCHABLE, "typeflags %x\n", pTA->wTypeFlags);
743     ok(pTA->cFuncs == 1, "cfuncs %d\n", pTA->cFuncs);
744     ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
745     ITypeInfo_ReleaseTypeAttr(pTI, pTA);
746
747     hr = ITypeInfo_GetRefTypeOfImplType(pTI, 0, &href);
748     ok(hr == S_OK, "hr %08x\n", hr);
749     hr = ITypeInfo_GetRefTypeInfo(pTI, href, &pTI_p);
750     ok(hr == S_OK, "hr %08x\n", hr);
751     hr = ITypeInfo_GetTypeAttr(pTI_p, &pTA);
752     ok(IsEqualGUID(&pTA->guid, &IID_IDispatch), "guid {%08x-....\n", pTA->guid.Data1);
753     ITypeInfo_ReleaseTypeAttr(pTI_p, pTA);
754     ITypeInfo_Release(pTI_p);
755     hr = ITypeInfo_GetFuncDesc(pTI, 1, &pFD);
756     ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr);
757     hr = ITypeInfo_GetFuncDesc(pTI, 0, &pFD);
758     ok(hr == S_OK, "hr %08x\n", hr);
759     ok(pFD->memid == 0x1c, "memid %08x\n", pFD->memid);
760     ITypeInfo_ReleaseFuncDesc(pTI, pFD);
761     ITypeInfo_Release(pTI);
762
763
764     /* ItestIF5 is dual with inherited ifaces which derive from IUnknown but not IDispatch */
765     hr = ITypeLib_GetTypeInfoOfGuid(pTL, &IID_ItestIF5, &pTI);
766     ok(hr == S_OK, "hr %08x\n", hr);
767
768     hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
769     ok(hr == S_OK, "hr %08x\n", hr);
770     ok(pTA->typekind == TKIND_DISPATCH, "kind %04x\n", pTA->typekind);
771     ok(pTA->cbSizeVft == 7 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
772 if(use_midl_tlb) {
773     ok(pTA->wTypeFlags == TYPEFLAG_FDUAL, "typeflags %x\n", pTA->wTypeFlags);
774  }
775     ok(pTA->cFuncs == 8, "cfuncs %d\n", pTA->cFuncs);
776     ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
777     ITypeInfo_ReleaseTypeAttr(pTI, pTA);
778
779     hr = ITypeInfo_GetRefTypeOfImplType(pTI, 0, &href);
780     ok(hr == S_OK, "hr %08x\n", hr);
781     hr = ITypeInfo_GetRefTypeInfo(pTI, href, &pTI_p);
782     ok(hr == S_OK, "hr %08x\n", hr);
783     hr = ITypeInfo_GetTypeAttr(pTI_p, &pTA);
784     ok(IsEqualGUID(&pTA->guid, &IID_IDispatch), "guid {%08x-....\n", pTA->guid.Data1);
785     ITypeInfo_ReleaseTypeAttr(pTI_p, pTA);
786     ITypeInfo_Release(pTI_p);
787 if(use_midl_tlb) {
788     hr = ITypeInfo_GetFuncDesc(pTI, 6, &pFD);
789     ok(hr == S_OK, "hr %08x\n", hr);
790     ok(pFD->memid == 0x1234, "memid %08x\n", pFD->memid);
791     ITypeInfo_ReleaseFuncDesc(pTI, pFD);
792 }
793     ITypeInfo_Release(pTI);
794
795     /* ItestIF7 is dual with inherited ifaces which derive from Dispatch */
796     hr = ITypeLib_GetTypeInfoOfGuid(pTL, &IID_ItestIF7, &pTI);
797     ok(hr == S_OK, "hr %08x\n", hr);
798
799     hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
800     ok(hr == S_OK, "hr %08x\n", hr);
801     ok(pTA->typekind == TKIND_DISPATCH, "kind %04x\n", pTA->typekind);
802     ok(pTA->cbSizeVft == 7 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
803     ok(pTA->wTypeFlags == (TYPEFLAG_FDISPATCHABLE|TYPEFLAG_FDUAL), "typeflags %x\n", pTA->wTypeFlags);
804     ok(pTA->cFuncs == 10, "cfuncs %d\n", pTA->cFuncs);
805     ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
806     ITypeInfo_ReleaseTypeAttr(pTI, pTA);
807
808     hr = ITypeInfo_GetRefTypeOfImplType(pTI, 0, &href);
809     ok(hr == S_OK, "hr %08x\n", hr);
810     hr = ITypeInfo_GetRefTypeInfo(pTI, href, &pTI_p);
811     ok(hr == S_OK, "hr %08x\n", hr);
812     hr = ITypeInfo_GetTypeAttr(pTI_p, &pTA);
813     ok(IsEqualGUID(&pTA->guid, &IID_IDispatch), "guid {%08x-....\n", pTA->guid.Data1);
814     ITypeInfo_ReleaseTypeAttr(pTI_p, pTA);
815     ITypeInfo_Release(pTI_p);
816
817     hr = ITypeInfo_GetFuncDesc(pTI, 9, &pFD);
818     ok(hr == S_OK, "hr %08x\n", hr);
819     ok(pFD->memid == 0x1236, "memid %08x\n", pFD->memid);
820     ITypeInfo_ReleaseFuncDesc(pTI, pFD);
821     ITypeInfo_Release(pTI);
822
823     /* ItestIF10 is a syntax 2 dispinterface which doesn't derive from IUnknown */
824     hr = ITypeLib_GetTypeInfoOfGuid(pTL, &DIID_ItestIF10, &pTI);
825     ok(hr == S_OK, "hr %08x\n", hr);
826
827     hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
828     ok(hr == S_OK, "hr %08x\n", hr);
829     ok(pTA->typekind == TKIND_DISPATCH, "kind %04x\n", pTA->typekind);
830     ok(pTA->cbSizeVft == 7 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
831     ok(pTA->wTypeFlags == TYPEFLAG_FDISPATCHABLE, "typeflags %x\n", pTA->wTypeFlags);
832 if(use_midl_tlb) {
833     ok(pTA->cFuncs == 3, "cfuncs %d\n", pTA->cFuncs);
834     ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
835     ITypeInfo_ReleaseTypeAttr(pTI, pTA);
836
837     hr = ITypeInfo_GetRefTypeOfImplType(pTI, -1, &href);
838     ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr);
839     hr = ITypeInfo_GetRefTypeOfImplType(pTI, 0, &href);
840     ok(hr == S_OK, "hr %08x\n", hr);
841     hr = ITypeInfo_GetRefTypeInfo(pTI, href, &pTI_p);
842     ok(hr == S_OK, "hr %08x\n", hr);
843     hr = ITypeInfo_GetTypeAttr(pTI_p, &pTA);
844     ok(IsEqualGUID(&pTA->guid, &IID_IDispatch), "guid {%08x-....\n", pTA->guid.Data1);
845     ITypeInfo_ReleaseTypeAttr(pTI_p, pTA);
846     ITypeInfo_Release(pTI_p);
847
848     /* Should have three methods */
849     hr = ITypeInfo_GetFuncDesc(pTI, 3, &pFD);
850     ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr);
851     hr = ITypeInfo_GetFuncDesc(pTI, 2, &pFD);
852     ok(hr == S_OK, "hr %08x\n", hr);
853     ok(pFD->memid == 0x60010000, "memid %08x\n", pFD->memid);
854     ok(pFD->oVft == 2 * sizeof(void *), "oVft %d\n", pFD->oVft);
855     ITypeInfo_ReleaseFuncDesc(pTI, pFD);
856 }
857     ITypeInfo_Release(pTI);
858
859     /* ItestIF11 is a syntax 2 dispinterface which derives from IDispatch */
860     hr = ITypeLib_GetTypeInfoOfGuid(pTL, &DIID_ItestIF11, &pTI);
861     ok(hr == S_OK, "hr %08x\n", hr);
862
863     hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
864     ok(hr == S_OK, "hr %08x\n", hr);
865     ok(pTA->typekind == TKIND_DISPATCH, "kind %04x\n", pTA->typekind);
866     ok(pTA->cbSizeVft == 7 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
867     ok(pTA->wTypeFlags == TYPEFLAG_FDISPATCHABLE, "typeflags %x\n", pTA->wTypeFlags);
868 if(use_midl_tlb) {
869     ok(pTA->cFuncs == 10, "cfuncs %d\n", pTA->cFuncs);
870     ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
871     ITypeInfo_ReleaseTypeAttr(pTI, pTA);
872
873     hr = ITypeInfo_GetRefTypeOfImplType(pTI, 0, &href);
874     ok(hr == S_OK, "hr %08x\n", hr);
875     hr = ITypeInfo_GetRefTypeInfo(pTI, href, &pTI_p);
876     ok(hr == S_OK, "hr %08x\n", hr);
877     hr = ITypeInfo_GetTypeAttr(pTI_p, &pTA);
878     ok(IsEqualGUID(&pTA->guid, &IID_IDispatch), "guid {%08x-....\n", pTA->guid.Data1);
879     ITypeInfo_ReleaseTypeAttr(pTI_p, pTA);
880     ITypeInfo_Release(pTI_p);
881
882     /* Should have ten methods */
883     hr = ITypeInfo_GetFuncDesc(pTI, 10, &pFD);
884     ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr);
885     hr = ITypeInfo_GetFuncDesc(pTI, 9, &pFD);
886     ok(hr == S_OK, "hr %08x\n", hr);
887     ok(pFD->memid == 0x1236, "memid %08x\n", pFD->memid);
888     ok(pFD->oVft == 9 * sizeof(void *), "oVft %d\n", pFD->oVft);
889     ITypeInfo_ReleaseFuncDesc(pTI, pFD);
890 }
891     ITypeInfo_Release(pTI);
892
893
894     /* ItestIF2 is an interface which derives from IUnknown */
895     hr = ITypeLib_GetTypeInfoOfGuid(pTL, &IID_ItestIF2, &pTI);
896     ok(hr == S_OK, "hr %08x\n", hr);
897
898     hr = ITypeInfo_GetTypeAttr(pTI, &pTA);
899     ok(hr == S_OK, "hr %08x\n", hr);
900     ok(pTA->typekind == TKIND_INTERFACE, "kind %04x\n", pTA->typekind);
901     ok(pTA->cbSizeVft == 6 * sizeof(void *), "sizevft %d\n", pTA->cbSizeVft);
902     ok(pTA->wTypeFlags == 0, "typeflags %x\n", pTA->wTypeFlags);
903 if(use_midl_tlb) {
904     ok(pTA->cFuncs == 1, "cfuncs %d\n", pTA->cFuncs);
905     ok(pTA->cImplTypes == 1, "cimpltypes %d\n", pTA->cImplTypes);
906     ITypeInfo_ReleaseTypeAttr(pTI, pTA);
907
908     /* Should have one method */
909     hr = ITypeInfo_GetFuncDesc(pTI, 1, &pFD);
910     ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr);
911     hr = ITypeInfo_GetFuncDesc(pTI, 0, &pFD);
912     ok(hr == S_OK, "hr %08x\n", hr);
913     ok(pFD->memid == 0x60020000, "memid %08x\n", pFD->memid);
914     ok(pFD->oVft == 5 * sizeof(void *), "oVft %d\n", pFD->oVft);
915     ITypeInfo_ReleaseFuncDesc(pTI, pFD);
916 }
917     ITypeInfo_Release(pTI);
918
919     ITypeLib_Release(pTL);
920
921     return;
922 }
923
924 #if 0       /* use this to generate more tests */
925
926 #define OLE_CHECK(x) { HRESULT hr = x; if (FAILED(hr)) { printf(#x "failed - %x\n", hr); return; } }
927
928 static char *dump_string(LPWSTR wstr)
929 {
930     int size = lstrlenW(wstr)+3;
931     char *out = CoTaskMemAlloc(size);
932     WideCharToMultiByte(20127, 0, wstr, -1, out+1, size, NULL, NULL);
933     out[0] = '\"';
934     strcat(out, "\"");
935     return out;
936 }
937
938 struct map_entry
939 {
940     DWORD value;
941     const char *name;
942 };
943
944 #define MAP_ENTRY(x) { x, #x }
945 static const struct map_entry tkind_map[] = {
946     MAP_ENTRY(TKIND_ENUM),
947     MAP_ENTRY(TKIND_RECORD),
948     MAP_ENTRY(TKIND_MODULE),
949     MAP_ENTRY(TKIND_INTERFACE),
950     MAP_ENTRY(TKIND_DISPATCH),
951     MAP_ENTRY(TKIND_COCLASS),
952     MAP_ENTRY(TKIND_ALIAS),
953     MAP_ENTRY(TKIND_UNION),
954     MAP_ENTRY(TKIND_MAX),
955     {0, NULL}
956 };
957
958 static const struct map_entry funckind_map[] = {
959     MAP_ENTRY(FUNC_VIRTUAL),
960     MAP_ENTRY(FUNC_PUREVIRTUAL),
961     MAP_ENTRY(FUNC_NONVIRTUAL),
962     MAP_ENTRY(FUNC_STATIC),
963     MAP_ENTRY(FUNC_DISPATCH),
964     {0, NULL}
965 };
966
967 static const struct map_entry invkind_map[] = {
968     MAP_ENTRY(INVOKE_FUNC),
969     MAP_ENTRY(INVOKE_PROPERTYGET),
970     MAP_ENTRY(INVOKE_PROPERTYPUT),
971     MAP_ENTRY(INVOKE_PROPERTYPUTREF),
972     {0, NULL}
973 };
974
975 #undef MAP_ENTRY
976
977 static const char *map_value(DWORD val, const struct map_entry *map)
978 {
979     static int map_id;
980     static char bufs[16][256];
981     char *buf;
982
983     while (map->name)
984     {
985         if (map->value == val)
986             return map->name;
987         map++;
988     }
989
990     buf = bufs[(map_id++)%16];
991     sprintf(buf, "0x%x", val);
992     return buf;
993 }
994
995 static void test_dump_typelib(const char *name)
996 {
997     WCHAR wszString[260];
998     ITypeInfo *info;
999     ITypeLib *lib;
1000     int count;
1001     int i;
1002
1003     MultiByteToWideChar(CP_ACP, 0, name, -1, wszString, 260);
1004     OLE_CHECK(LoadTypeLib(wszString, &lib));
1005     count = ITypeLib_GetTypeInfoCount(lib);
1006     printf("/* interfaces count: %d */\n", count);
1007     for (i = 0; i < count; i++)
1008     {
1009         TYPEATTR *attr;
1010         BSTR name;
1011         int f = 0;
1012
1013         OLE_CHECK(ITypeLib_GetDocumentation(lib, i, &name, NULL, NULL, NULL));
1014         printf("{\n"
1015                "  %s,\n", dump_string(name));
1016         SysFreeString(name);
1017
1018         OLE_CHECK(ITypeLib_GetTypeInfo(lib, i, &info));
1019         ITypeInfo_GetTypeAttr(info, &attr);
1020         printf("  /*kind*/ %s, /*flags*/ 0x%x, /*align*/ %d, /*size*/ %d,\n"
1021                "  /*#vtbl*/ %d, /*#func*/ %d,\n"
1022                "  {\n",
1023             map_value(attr->typekind, tkind_map), attr->wTypeFlags, attr->cbAlignment, attr->cbSizeInstance, attr->cbSizeVft,
1024             attr->cFuncs);
1025         ITypeInfo_ReleaseTypeAttr(info, attr);
1026         while (1)
1027         {
1028             FUNCDESC *desc;
1029             BSTR tab[256];
1030             UINT cNames;
1031             int p;
1032
1033             if (FAILED(ITypeInfo_GetFuncDesc(info, f, &desc)))
1034                 break;
1035             printf("    {\n"
1036                    "      0x%x, /*func*/ %s, /*inv*/ %s, /*call*/ 0x%x,\n",
1037                 desc->memid, map_value(desc->funckind, funckind_map), map_value(desc->invkind, invkind_map),
1038                 desc->callconv);
1039             printf("      /*#param*/ %d, /*#opt*/ %d, /*vtbl*/ %d, /*#scodes*/ %d, /*flags*/ 0x%x,\n",
1040                 desc->cParams, desc->cParamsOpt, desc->oVft, desc->cScodes, desc->wFuncFlags);
1041             printf("      {%d, %x}, /* ret */\n", desc->elemdescFunc.tdesc.vt, desc->elemdescFunc.paramdesc.wParamFlags);
1042             printf("      { /* params */\n");
1043             for (p = 0; p < desc->cParams; p++)
1044             {
1045                 ELEMDESC e = desc->lprgelemdescParam[p];
1046                 printf("        {%d, %x},\n", e.tdesc.vt, e.paramdesc.wParamFlags);
1047             }
1048             printf("        {-1, -1}\n");
1049             printf("      },\n");
1050             printf("      { /* names */\n");
1051             OLE_CHECK(ITypeInfo_GetNames(info, desc->memid, tab, 256, &cNames));
1052             for (p = 0; p < cNames; p++)
1053             {
1054                 printf("        %s,\n", dump_string(tab[p]));
1055                 SysFreeString(tab[p]);
1056             }
1057             printf("        NULL,\n");
1058             printf("      },\n");
1059             printf("    },\n");
1060             ITypeInfo_ReleaseFuncDesc(info, desc);
1061             f++;
1062         }
1063         printf("  }\n");
1064         printf("},\n");
1065         ITypeInfo_Release(info);
1066     }
1067     ITypeLib_Release(lib);
1068 }
1069
1070 #else
1071
1072 typedef struct _element_info
1073 {
1074     VARTYPE vt;
1075     USHORT wParamFlags;
1076 } element_info;
1077
1078 typedef struct _function_info
1079 {
1080     MEMBERID memid;
1081     FUNCKIND funckind;
1082     INVOKEKIND invkind;
1083     CALLCONV callconv;
1084     short cParams;
1085     short cParamsOpt;
1086     short oVft;
1087     short cScodes;
1088     WORD wFuncFlags;
1089     element_info ret_type;
1090     element_info params[15];
1091     LPCSTR names[15];
1092 } function_info;
1093
1094 typedef struct _interface_info
1095 {
1096     LPCSTR name;
1097     TYPEKIND type;
1098     WORD wTypeFlags;
1099     USHORT cbAlignment;
1100     USHORT cbSizeInstance;
1101     USHORT cbSizeVft;
1102     USHORT cFuncs;
1103     function_info funcs[20];
1104 } interface_info;
1105
1106 static const interface_info info[] = {
1107 /* interfaces count: 2 */
1108 {
1109   "IDualIface",
1110   /*kind*/ TKIND_DISPATCH, /*flags*/ 0x1040, /*align*/ 4, /*size*/ 4,
1111   /*#vtbl*/ 28, /*#func*/ 8,
1112   {
1113     {
1114       0x60000000, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1115       /*#param*/ 2, /*#opt*/ 0, /*vtbl*/ 0, /*#scodes*/ 0, /*flags*/ 0x1,
1116       {24, 0}, /* ret */
1117       { /* params */
1118         {26, 1},
1119         {26, 2},
1120         {-1, -1}
1121       },
1122       { /* names */
1123         "QueryInterface",
1124         "riid",
1125         "ppvObj",
1126         NULL,
1127       },
1128     },
1129     {
1130       0x60000001, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1131       /*#param*/ 0, /*#opt*/ 0, /*vtbl*/ 4, /*#scodes*/ 0, /*flags*/ 0x1,
1132       {19, 0}, /* ret */
1133       { /* params */
1134         {-1, -1}
1135       },
1136       { /* names */
1137         "AddRef",
1138         NULL,
1139       },
1140     },
1141     {
1142       0x60000002, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1143       /*#param*/ 0, /*#opt*/ 0, /*vtbl*/ 8, /*#scodes*/ 0, /*flags*/ 0x1,
1144       {19, 0}, /* ret */
1145       { /* params */
1146         {-1, -1}
1147       },
1148       { /* names */
1149         "Release",
1150         NULL,
1151       },
1152     },
1153     {
1154       0x60010000, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1155       /*#param*/ 1, /*#opt*/ 0, /*vtbl*/ 12, /*#scodes*/ 0, /*flags*/ 0x1,
1156       {24, 0}, /* ret */
1157       { /* params */
1158         {26, 2},
1159         {-1, -1}
1160       },
1161       { /* names */
1162         "GetTypeInfoCount",
1163         "pctinfo",
1164         NULL,
1165       },
1166     },
1167     {
1168       0x60010001, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1169       /*#param*/ 3, /*#opt*/ 0, /*vtbl*/ 16, /*#scodes*/ 0, /*flags*/ 0x1,
1170       {24, 0}, /* ret */
1171       { /* params */
1172         {23, 1},
1173         {19, 1},
1174         {26, 2},
1175         {-1, -1}
1176       },
1177       { /* names */
1178         "GetTypeInfo",
1179         "itinfo",
1180         "lcid",
1181         "pptinfo",
1182         NULL,
1183       },
1184     },
1185     {
1186       0x60010002, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1187       /*#param*/ 5, /*#opt*/ 0, /*vtbl*/ 20, /*#scodes*/ 0, /*flags*/ 0x1,
1188       {24, 0}, /* ret */
1189       { /* params */
1190         {26, 1},
1191         {26, 1},
1192         {23, 1},
1193         {19, 1},
1194         {26, 2},
1195         {-1, -1}
1196       },
1197       { /* names */
1198         "GetIDsOfNames",
1199         "riid",
1200         "rgszNames",
1201         "cNames",
1202         "lcid",
1203         "rgdispid",
1204         NULL,
1205       },
1206     },
1207     {
1208       0x60010003, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1209       /*#param*/ 8, /*#opt*/ 0, /*vtbl*/ 24, /*#scodes*/ 0, /*flags*/ 0x1,
1210       {24, 0}, /* ret */
1211       { /* params */
1212         {3, 1},
1213         {26, 1},
1214         {19, 1},
1215         {18, 1},
1216         {26, 1},
1217         {26, 2},
1218         {26, 2},
1219         {26, 2},
1220         {-1, -1}
1221       },
1222       { /* names */
1223         "Invoke",
1224         "dispidMember",
1225         "riid",
1226         "lcid",
1227         "wFlags",
1228         "pdispparams",
1229         "pvarResult",
1230         "pexcepinfo",
1231         "puArgErr",
1232         NULL,
1233       },
1234     },
1235     {
1236       0x60020000, /*func*/ FUNC_DISPATCH, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1237       /*#param*/ 0, /*#opt*/ 0, /*vtbl*/ 28, /*#scodes*/ 0, /*flags*/ 0x0,
1238       {24, 0}, /* ret */
1239       { /* params */
1240         {-1, -1}
1241       },
1242       { /* names */
1243         "Test",
1244         NULL,
1245       },
1246     },
1247   }
1248 },
1249 {
1250   "ISimpleIface",
1251   /*kind*/ TKIND_INTERFACE, /*flags*/ 0x1000, /*align*/ 4, /*size*/ 4,
1252   /*#vtbl*/ 32, /*#func*/ 1,
1253   {
1254     {
1255       0x60020000, /*func*/ FUNC_PUREVIRTUAL, /*inv*/ INVOKE_FUNC, /*call*/ 0x4,
1256       /*#param*/ 0, /*#opt*/ 0, /*vtbl*/ 28, /*#scodes*/ 0, /*flags*/ 0x0,
1257       {25, 0}, /* ret */
1258       { /* params */
1259         {-1, -1}
1260       },
1261       { /* names */
1262         "Test",
1263         NULL,
1264       },
1265     },
1266   }
1267 },
1268 };
1269
1270 #define check_type(elem, info) { \
1271       expect_int((elem)->tdesc.vt, (info)->vt);                     \
1272       expect_hex(U(*(elem)).paramdesc.wParamFlags, (info)->wParamFlags); \
1273   }
1274
1275 static void test_dump_typelib(const char *name)
1276 {
1277     WCHAR wszName[MAX_PATH];
1278     ITypeLib *typelib;
1279     int ifcount = sizeof(info)/sizeof(info[0]);
1280     int iface, func;
1281
1282     MultiByteToWideChar(CP_ACP, 0, name, -1, wszName, MAX_PATH);
1283     ole_check(LoadTypeLibEx(wszName, REGKIND_NONE, &typelib));
1284     expect_eq(ITypeLib_GetTypeInfoCount(typelib), ifcount, UINT, "%d");
1285     for (iface = 0; iface < ifcount; iface++)
1286     {
1287         const interface_info *if_info = &info[iface];
1288         ITypeInfo *typeinfo;
1289         TYPEATTR *typeattr;
1290         BSTR bstrIfName;
1291
1292         trace("Interface %s\n", if_info->name);
1293         ole_check(ITypeLib_GetTypeInfo(typelib, iface, &typeinfo));
1294         ole_check(ITypeLib_GetDocumentation(typelib, iface, &bstrIfName, NULL, NULL, NULL));
1295         expect_wstr_acpval(bstrIfName, if_info->name);
1296         SysFreeString(bstrIfName);
1297
1298         ole_check(ITypeInfo_GetTypeAttr(typeinfo, &typeattr));
1299         expect_int(typeattr->typekind, if_info->type);
1300         expect_hex(typeattr->wTypeFlags, if_info->wTypeFlags);
1301         expect_int(typeattr->cbAlignment, if_info->cbAlignment);
1302         expect_int(typeattr->cbSizeInstance, if_info->cbSizeInstance);
1303         expect_int(typeattr->cbSizeVft, if_info->cbSizeVft);
1304         expect_int(typeattr->cFuncs, if_info->cFuncs);
1305
1306         for (func = 0; func < typeattr->cFuncs; func++)
1307         {
1308             function_info *fn_info = (function_info *)&if_info->funcs[func];
1309             FUNCDESC *desc;
1310             BSTR namesTab[256];
1311             UINT cNames;
1312             int i;
1313
1314             trace("Function %s\n", fn_info->names[0]);
1315             ole_check(ITypeInfo_GetFuncDesc(typeinfo, func, &desc));
1316             expect_int(desc->memid, fn_info->memid);
1317             expect_int(desc->funckind, fn_info->funckind);
1318             expect_int(desc->invkind, fn_info->invkind);
1319             expect_int(desc->callconv, fn_info->callconv);
1320             expect_int(desc->cParams, fn_info->cParams);
1321             expect_int(desc->cParamsOpt, fn_info->cParamsOpt);
1322             expect_int(desc->oVft, fn_info->oVft);
1323             expect_int(desc->cScodes, fn_info->cScodes);
1324             expect_int(desc->wFuncFlags, fn_info->wFuncFlags);
1325             ole_check(ITypeInfo_GetNames(typeinfo, desc->memid, namesTab, 256, &cNames));
1326             for (i = 0; i < cNames; i++)
1327             {
1328                 expect_wstr_acpval(namesTab[i], fn_info->names[i]);
1329                 SysFreeString(namesTab[i]);
1330             }
1331             expect_null(fn_info->names[cNames]);
1332
1333             check_type(&desc->elemdescFunc, &fn_info->ret_type);
1334             for (i = 0 ; i < desc->cParams; i++)
1335             {
1336                 check_type(&desc->lprgelemdescParam[i], &fn_info->params[i]);
1337             }
1338             expect_int(fn_info->params[desc->cParams].vt, (VARTYPE)-1);
1339
1340             ITypeInfo_ReleaseFuncDesc(typeinfo, desc);
1341         }
1342
1343         ITypeInfo_ReleaseTypeAttr(typeinfo, typeattr);
1344         ITypeInfo_Release(typeinfo);
1345     }
1346     ITypeLib_Release(typelib);
1347 }
1348
1349 #endif
1350
1351 static const char *create_test_typelib(void)
1352 {
1353     static char filename[MAX_PATH];
1354     HANDLE file;
1355     HRSRC res;
1356     void *ptr;
1357     DWORD written;
1358
1359     GetTempFileNameA( ".", "tlb", 0, filename );
1360     file = CreateFile( filename, GENERIC_READ|GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, 0 );
1361     ok( file != INVALID_HANDLE_VALUE, "file creation failed\n" );
1362     if (file == INVALID_HANDLE_VALUE) return NULL;
1363     res = FindResource( GetModuleHandle(0), MAKEINTRESOURCE(2), "TYPELIB" );
1364     ok( res != 0, "couldn't find resource\n" );
1365     ptr = LockResource( LoadResource( GetModuleHandle(0), res ));
1366     WriteFile( file, ptr, SizeofResource( GetModuleHandle(0), res ), &written, NULL );
1367     ok( written == SizeofResource( GetModuleHandle(0), res ), "couldn't write resource\n" );
1368     CloseHandle( file );
1369     return filename;
1370 }
1371
1372 START_TEST(typelib)
1373 {
1374     const char *filename;
1375
1376     ref_count_test(wszStdOle2);
1377     test_TypeComp();
1378     test_CreateDispTypeInfo();
1379     test_TypeInfo();
1380     test_QueryPathOfRegTypeLib();
1381     test_inheritance();
1382
1383     if ((filename = create_test_typelib()))
1384     {
1385         test_dump_typelib( filename );
1386         DeleteFile( filename );
1387     }
1388 }