mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
ebd1e3d611
- 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
17 lines
307 B
C
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 }
|
|
};
|
|
|