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