reactos/rostests/apitests/browseui/testlist.c
Mark Jansen ebd1e3d611 [BROWSEUI_APITEST] Add tests for ACListISF, a class used for autocompletion. CORE-9281
- Add tests for ACListISF.
- Change the SHExplorerParseCmdLine test to use GetProcAddress instead of relying on the import (it's not there anymore in NT 6.0+)

svn path=/trunk/; revision=71345
2016-05-16 18:03:09 +00:00

17 lines
307 B
C

#define __ROS_LONG64__
#define STANDALONE
#include <apitest.h>
extern void func_ACListISF(void);
extern void func_SHExplorerParseCmdLine(void);
const struct test winetest_testlist[] =
{
{ "ACListISF", func_ACListISF },
{ "SHExplorerParseCmdLine", func_SHExplorerParseCmdLine },
{ 0, 0 }
};