2010-08-25 08:48:55 +00:00
|
|
|
#define __ROS_LONG64__
|
2008-06-01 22:08:45 +00:00
|
|
|
|
2010-08-25 08:48:55 +00:00
|
|
|
#define STANDALONE
|
2013-09-22 19:07:35 +00:00
|
|
|
#include <apitest.h>
|
2008-06-01 22:08:45 +00:00
|
|
|
|
2012-06-23 12:40:36 +00:00
|
|
|
extern void func_getaddrinfo(void);
|
2010-08-25 08:48:55 +00:00
|
|
|
extern void func_ioctlsocket(void);
|
|
|
|
extern void func_recv(void);
|
2015-06-13 12:29:07 +00:00
|
|
|
extern void func_send(void);
|
2012-06-25 08:21:11 +00:00
|
|
|
extern void func_WSAStartup(void);
|
2014-10-03 09:00:15 +00:00
|
|
|
extern void func_nostartup(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
|
|
|
{
|
2012-06-23 12:40:36 +00:00
|
|
|
{ "getaddrinfo", func_getaddrinfo },
|
2010-08-25 08:48:55 +00:00
|
|
|
{ "ioctlsocket", func_ioctlsocket },
|
2014-10-03 09:00:15 +00:00
|
|
|
{ "nostartup", func_nostartup },
|
2010-08-25 08:48:55 +00:00
|
|
|
{ "recv", func_recv },
|
2015-06-13 12:29:07 +00:00
|
|
|
{ "send", func_send },
|
2012-06-25 08:21:11 +00:00
|
|
|
{ "WSAStartup", func_WSAStartup },
|
2010-08-25 08:48:55 +00:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
2008-06-01 22:08:45 +00:00
|
|
|
|