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_CComVariant(void);
9 extern void func_CImage(void);
10 extern void func_CRegKey(void);
11 extern void func_CSimpleArray(void);
12 extern void func_CSimpleMap(void);
13 extern void func_CString(void);
14 
15 const struct test winetest_testlist[] =
16 {
17     { "atltypes", func_atltypes },
18     { "CComBSTR", func_CComBSTR },
19     { "CComHeapPtr", func_CComHeapPtr },
20     { "CComObject", func_CComObject },
21     { "CComVariant", func_CComVariant },
22     { "CImage", func_CImage },
23     { "CRegKey", func_CRegKey },
24     { "CSimpleArray", func_CSimpleArray },
25     { "CSimpleMap", func_CSimpleMap },
26     { "CString", func_CString },
27     { 0, 0 }
28 };
29