[IPHLPAPI_APITEST] Add tests for GetOwnerModuleFromUdpEntry
[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_GetOwnerModuleFromUdpEntry(void);
12 extern void func_icmp(void);
13 extern void func_SendARP(void);
14
15 const struct test winetest_testlist[] =
16 {
17 { "GetExtendedTcpTable", func_GetExtendedTcpTable },
18 { "GetExtendedUdpTable", func_GetExtendedUdpTable },
19 { "GetInterfaceName", func_GetInterfaceName },
20 { "GetNetworkParams", func_GetNetworkParams },
21 { "GetOwnerModuleFromTcpEntry", func_GetOwnerModuleFromTcpEntry },
22 { "GetOwnerModuleFromUdpEntry", func_GetOwnerModuleFromUdpEntry },
23 { "icmp", func_icmp },
24 { "SendARP", func_SendARP },
25
26 { 0, 0 }
27 };
28