reactos/rostests/apitests/ws2_32/testlist.c

19 lines
310 B
C
Raw Normal View History

#define WIN32_LEAN_AND_MEAN
#define __ROS_LONG64__
#include <windows.h>
#define STANDALONE
#include "wine/test.h"
extern void func_ioctlsocket(void);
extern void func_recv(void);
const struct test winetest_testlist[] =
{
{ "ioctlsocket", func_ioctlsocket },
{ "recv", func_recv },
{ 0, 0 }
};