2015-11-29 19:31:33 +00:00
|
|
|
#define __ROS_LONG64__
|
|
|
|
|
|
|
|
#define STANDALONE
|
|
|
|
#include <apitest.h>
|
|
|
|
|
2018-11-29 07:42:13 +00:00
|
|
|
extern void func_GetExtendedTcpTable(void);
|
2018-12-21 18:05:07 +00:00
|
|
|
extern void func_GetExtendedUdpTable(void);
|
2017-11-25 17:06:21 +00:00
|
|
|
extern void func_GetInterfaceName(void);
|
2016-09-28 14:27:48 +00:00
|
|
|
extern void func_GetNetworkParams(void);
|
2018-11-29 18:58:36 +00:00
|
|
|
extern void func_GetOwnerModuleFromTcpEntry(void);
|
2018-12-21 18:16:25 +00:00
|
|
|
extern void func_GetOwnerModuleFromUdpEntry(void);
|
2015-12-04 10:34:24 +00:00
|
|
|
extern void func_icmp(void);
|
2015-11-29 19:31:33 +00:00
|
|
|
extern void func_SendARP(void);
|
|
|
|
|
|
|
|
const struct test winetest_testlist[] =
|
|
|
|
{
|
2018-11-29 18:58:36 +00:00
|
|
|
{ "GetExtendedTcpTable", func_GetExtendedTcpTable },
|
2018-12-21 18:05:07 +00:00
|
|
|
{ "GetExtendedUdpTable", func_GetExtendedUdpTable },
|
2018-11-29 18:58:36 +00:00
|
|
|
{ "GetInterfaceName", func_GetInterfaceName },
|
|
|
|
{ "GetNetworkParams", func_GetNetworkParams },
|
|
|
|
{ "GetOwnerModuleFromTcpEntry", func_GetOwnerModuleFromTcpEntry },
|
2018-12-21 18:16:25 +00:00
|
|
|
{ "GetOwnerModuleFromUdpEntry", func_GetOwnerModuleFromUdpEntry },
|
2018-11-29 18:58:36 +00:00
|
|
|
{ "icmp", func_icmp },
|
|
|
|
{ "SendARP", func_SendARP },
|
2015-11-29 19:31:33 +00:00
|
|
|
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|