reactos/rostests/apitests/shell32/testlist.c
Mark Jansen f6c36fb82e and of course also rename the test itself...
svn path=/trunk/; revision=73186
2016-11-09 23:23:50 +00:00

23 lines
600 B
C

#define __ROS_LONG64__
#define STANDALONE
#include <wine/test.h>
extern void func_CMyComputer(void);
extern void func_CShellDesktop(void);
extern void func_CShellLink(void);
extern void func_menu(void);
extern void func_ShellExecuteEx(void);
extern void func_SHParseDisplayName(void);
const struct test winetest_testlist[] =
{
{ "CMyComputer", func_CMyComputer },
{ "CShellDesktop", func_CShellDesktop },
{ "CShellLink", func_CShellLink },
{ "menu", func_menu },
{ "ShellExecuteEx", func_ShellExecuteEx },
{ "SHParseDisplayName", func_SHParseDisplayName },
{ 0, 0 }
};