reactos/rostests/apitests/com/testlist.c
Thomas Faber 05838e4ee8 [COM_APITEST]
- Add some classes and interfaces related to CORE-10838.

svn path=/trunk/; revision=71136
2016-04-10 09:40:16 +00:00

28 lines
654 B
C

#define __ROS_LONG64__
#define STANDALONE
#include <apitest.h>
extern void func_browseui(void);
extern void func_ieframe(void);
extern void func_interfaces(void);
extern void func_netcfgx(void);
extern void func_netshell(void);
extern void func_ole32(void);
extern void func_shdocvw(void);
extern void func_shell32(void);
const struct test winetest_testlist[] =
{
{ "browseui", func_browseui },
{ "ieframe", func_ieframe },
{ "interfaces", func_interfaces },
{ "netcfgx", func_netcfgx },
{ "netshell", func_netshell },
{ "ole32", func_ole32 },
{ "shdocvw", func_shdocvw },
{ "shell32", func_shell32 },
{ 0, 0 }
};