reactos/rostests/apitests/com/testlist.c
Thomas Faber e7c17c0741 [NETSHELL][COM_APITEST]
- Remove another MessageBox...
- Also test some more interfaces found in netshell classes

svn path=/trunk/; revision=67316
2015-04-19 22:50:25 +00:00

26 lines
595 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_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 },
{ "shdocvw", func_shdocvw },
{ "shell32", func_shell32 },
{ 0, 0 }
};