mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
edc42192c4
- Add test for getservbyname CORE-10440 svn path=/trunk/; revision=71101
28 lines
702 B
C
28 lines
702 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_getaddrinfo(void);
|
|
extern void func_getservbyname(void);
|
|
extern void func_getservbyport(void);
|
|
extern void func_ioctlsocket(void);
|
|
extern void func_recv(void);
|
|
extern void func_send(void);
|
|
extern void func_WSAStartup(void);
|
|
extern void func_nostartup(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "getaddrinfo", func_getaddrinfo },
|
|
{ "getservbyname", func_getservbyname },
|
|
{ "getservbyport", func_getservbyport },
|
|
{ "ioctlsocket", func_ioctlsocket },
|
|
{ "nostartup", func_nostartup },
|
|
{ "recv", func_recv },
|
|
{ "send", func_send },
|
|
{ "WSAStartup", func_WSAStartup },
|
|
{ 0, 0 }
|
|
};
|
|
|