[IPHLPAPI_APITEST] Add tests for GetOwnerModuleFromTcpEntry()
[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_GetInterfaceName(void);
8 extern void func_GetNetworkParams(void);
9 extern void func_GetOwnerModuleFromTcpEntry(void);
10 extern void func_icmp(void);
11 extern void func_SendARP(void);
12
13 const struct test winetest_testlist[] =
14 {
15 { "GetExtendedTcpTable", func_GetExtendedTcpTable },
16 { "GetInterfaceName", func_GetInterfaceName },
17 { "GetNetworkParams", func_GetNetworkParams },
18 { "GetOwnerModuleFromTcpEntry", func_GetOwnerModuleFromTcpEntry },
19 { "icmp", func_icmp },
20 { "SendARP", func_SendARP },
21
22 { 0, 0 }
23 };
24