2010-08-25 08:48:55 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#define __ROS_LONG64__
|
|
|
|
#include <windows.h>
|
2008-06-01 22:08:45 +00:00
|
|
|
|
2010-08-25 08:48:55 +00:00
|
|
|
#define STANDALONE
|
|
|
|
#include "wine/test.h"
|
2008-06-01 22:08:45 +00:00
|
|
|
|
2010-08-25 08:48:55 +00:00
|
|
|
extern void func_ioctlsocket(void);
|
|
|
|
extern void func_recv(void);
|
2008-06-01 22:08:45 +00:00
|
|
|
|
2010-08-25 08:48:55 +00:00
|
|
|
const struct test winetest_testlist[] =
|
2008-06-01 22:08:45 +00:00
|
|
|
{
|
2010-08-25 08:48:55 +00:00
|
|
|
{ "ioctlsocket", func_ioctlsocket },
|
|
|
|
{ "recv", func_recv },
|
2008-06-01 22:08:45 +00:00
|
|
|
|
2010-08-25 08:48:55 +00:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
2008-06-01 22:08:45 +00:00
|
|
|
|