1 #define STANDALONE
2 #include <apitest.h>
3 
4 extern void func_atltypes(void);
5 extern void func_CComBSTR(void);
6 extern void func_CComHeapPtr(void);
7 extern void func_CComObject(void);
8 extern void func_CComQIPtr(void);
9 extern void func_CComVariant(void);
10 extern void func_CImage(void);
11 extern void func_CRegKey(void);
12 extern void func_CSimpleArray(void);
13 extern void func_CSimpleMap(void);
14 extern void func_CString(void);
15 
16 const struct test winetest_testlist[] =
17 {
18     { "atltypes", func_atltypes },
19     { "CComBSTR", func_CComBSTR },
20     { "CComHeapPtr", func_CComHeapPtr },
21     { "CComObject", func_CComObject },
22     { "CComQIPtr", func_CComQIPtr },
23     { "CComVariant", func_CComVariant },
24     { "CImage", func_CImage },
25     { "CRegKey", func_CRegKey },
26     { "CSimpleArray", func_CSimpleArray },
27     { "CSimpleMap", func_CSimpleMap },
28     { "CString", func_CString },
29     { 0, 0 }
30 };
31