reactos/rostests/apitests/msvcrt/testlist.c
Hermès Bélusca-Maïto 6dacc020db [MSVCRT:APITEST]
- Add a test which allows testing the command line argument lpCmdLine in WinMain function (GUI programs).

svn path=/trunk/; revision=57524
2012-10-09 20:56:11 +00:00

20 lines
380 B
C

#define WIN32_LEAN_AND_MEAN
#define __ROS_LONG64__
#include <windows.h>
#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 }
};