* The Shell.. for a long time we dreamed of having a compatible, properly working...
[reactos.git] / rostests / apitests / ws2_32 / testlist.c
1 #define __ROS_LONG64__
2
3 #define STANDALONE
4 #include <apitest.h>
5
6 extern void func_getaddrinfo(void);
7 extern void func_ioctlsocket(void);
8 extern void func_recv(void);
9 extern void func_WSAStartup(void);
10 extern void func_nostartup(void);
11
12 const struct test winetest_testlist[] =
13 {
14 { "getaddrinfo", func_getaddrinfo },
15 { "ioctlsocket", func_ioctlsocket },
16 { "nostartup", func_nostartup },
17 { "recv", func_recv },
18 { "WSAStartup", func_WSAStartup },
19 { 0, 0 }
20 };
21