1 #define STANDALONE
2 #include <apitest.h>
3 
4 extern void func_atltypes(void);
5 extern void func_CAtlFileMapping(void);
6 extern void func_CAtlArray(void);
7 extern void func_CAtlList(void);
8 extern void func_CComBSTR(void);
9 extern void func_CComHeapPtr(void);
10 extern void func_CComObject(void);
11 extern void func_CComQIPtr(void);
12 extern void func_CComVariant(void);
13 extern void func_CHeapPtrList(void);
14 extern void func_CImage(void);
15 extern void func_CPath(void);
16 extern void func_CRegKey(void);
17 extern void func_CSimpleArray(void);
18 extern void func_CSimpleMap(void);
19 extern void func_CString(void);
20 extern void func_SubclassWindow(void);
21 
22 const struct test winetest_testlist[] =
23 {
24     { "atltypes", func_atltypes },
25     { "CAtlFileMapping", func_CAtlFileMapping },
26     { "CAtlArray", func_CAtlArray },
27     { "CAtlList", func_CAtlList },
28     { "CComBSTR", func_CComBSTR },
29     { "CComHeapPtr", func_CComHeapPtr },
30     { "CComObject", func_CComObject },
31     { "CComQIPtr", func_CComQIPtr },
32     { "CComVariant", func_CComVariant },
33     { "CHeapPtrList", func_CHeapPtrList },
34     { "CImage", func_CImage },
35     { "CPath", func_CPath },
36     { "CRegKey", func_CRegKey },
37     { "CSimpleArray", func_CSimpleArray },
38     { "CSimpleMap", func_CSimpleMap },
39     { "CString", func_CString },
40     { "SubclassWindow", func_SubclassWindow },
41     { 0, 0 }
42 };
43