mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
c71475e3bb
svn path=/trunk/; revision=58290
20 lines
412 B
C
20 lines
412 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <wine/test.h>
|
|
|
|
extern void func_getaddrinfo(void);
|
|
extern void func_ioctlsocket(void);
|
|
extern void func_recv(void);
|
|
extern void func_WSAStartup(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "getaddrinfo", func_getaddrinfo },
|
|
{ "ioctlsocket", func_ioctlsocket },
|
|
{ "recv", func_recv },
|
|
{ "WSAStartup", func_WSAStartup },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|