[ATL][ATL_APITEST] Test + implement CHeapPtrList
[reactos.git] / modules / rostests / apitests / atl / testlist.c
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_CRegKey(void);
16 extern void func_CSimpleArray(void);
17 extern void func_CSimpleMap(void);
18 extern void func_CString(void);
19
20 const struct test winetest_testlist[] =
21 {
22 { "atltypes", func_atltypes },
23 { "CAtlFileMapping", func_CAtlFileMapping },
24 { "CAtlArray", func_CAtlArray },
25 { "CAtlList", func_CAtlList },
26 { "CComBSTR", func_CComBSTR },
27 { "CComHeapPtr", func_CComHeapPtr },
28 { "CComObject", func_CComObject },
29 { "CComQIPtr", func_CComQIPtr },
30 { "CComVariant", func_CComVariant },
31 { "CHeapPtrList", func_CHeapPtrList },
32 { "CImage", func_CImage },
33 { "CRegKey", func_CRegKey },
34 { "CSimpleArray", func_CSimpleArray },
35 { "CSimpleMap", func_CSimpleMap },
36 { "CString", func_CString },
37 { 0, 0 }
38 };