mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
6db0c12e85
- 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
21 lines
505 B
C
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 }
|
|
};
|