reactos/rostests/apitests/atl/testlist.c
Mark Jansen 6db0c12e85 [ATL][ATL_APITEST] Add CImage initial implementation + tests, by Katayama Hirofumi MZ. CORE-10029 #comment Thanks, first iteration committed!
- Tests focus mainly on loading + saving images.
- The implementation is not perfect yet, see CImage_WIP.txt for test results.
- The GDI+ functions should be fixed before this test can pass fully, MS' ATL fails in ReactOS, but passes on Windows.

svn path=/trunk/; revision=72332
2016-08-18 19:27:49 +00:00

21 lines
505 B
C

#define STANDALONE
#include <apitest.h>
extern void func_atltypes(void);
extern void func_CComBSTR(void);
extern void func_CComHeapPtr(void);
extern void func_CImage(void);
extern void func_CRegKey(void);
extern void func_CString(void);
const struct test winetest_testlist[] =
{
{ "atltypes", func_atltypes },
{ "CComBSTR", func_CComBSTR },
{ "CComHeapPtr", func_CComHeapPtr },
{ "CImage", func_CImage },
{ "CRegKey", func_CRegKey },
{ "CString", func_CString },
{ 0, 0 }
};