6690e3d26072f7f12803b96e477f21faa124c429
[reactos.git] / modules / rostests / apitests / iphlpapi / testlist.c
1 #define __ROS_LONG64__
2
3 #define STANDALONE
4 #include <apitest.h>
5
6 extern void func_GetExtendedTcpTable(void);
7 extern void func_GetExtendedUdpTable(void);
8 extern void func_GetInterfaceName(void);
9 extern void func_GetNetworkParams(void);
10 extern void func_GetOwnerModuleFromTcpEntry(void);
11 extern void func_icmp(void);
12 extern void func_SendARP(void);
13
14 const struct test winetest_testlist[] =
15 {
16 { "GetExtendedTcpTable", func_GetExtendedTcpTable },
17 { "GetExtendedUdpTable", func_GetExtendedUdpTable },
18 { "GetInterfaceName", func_GetInterfaceName },
19 { "GetNetworkParams", func_GetNetworkParams },
20 { "GetOwnerModuleFromTcpEntry", func_GetOwnerModuleFromTcpEntry },
21 { "icmp", func_icmp },
22 { "SendARP", func_SendARP },
23
24 { 0, 0 }
25 };
26