mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
c71475e3bb
svn path=/trunk/; revision=58290
17 lines
331 B
C
17 lines
331 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <wine/test.h>
|
|
|
|
extern void func_CommandLine(void);
|
|
extern void func_ieee(void);
|
|
extern void func_splitpath(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "CommandLine", func_CommandLine },
|
|
{ "ieee", func_ieee },
|
|
{ "splitpath", func_splitpath },
|
|
|
|
{ 0, 0 }
|
|
};
|