mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 04:37:32 +00:00
20 lines
388 B
C
20 lines
388 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_CommandLine(void);
|
|
extern void func_ieee(void);
|
|
extern void func_popen(void);
|
|
extern void func_splitpath(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "CommandLine", func_CommandLine },
|
|
{ "ieee", func_ieee },
|
|
{ "popen", func_popen },
|
|
{ "splitpath", func_splitpath },
|
|
|
|
{ 0, 0 }
|
|
};
|