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