ReactOS 0.4.15-dev-7953-g1f49173
testlist.c
Go to the documentation of this file.
1#define __ROS_LONG64__
2
3#define STANDALONE
4#include <apitest.h>
5
6extern void func_GetExtendedTcpTable(void);
7extern void func_GetExtendedUdpTable(void);
8extern void func_GetInterfaceName(void);
9extern void func_GetNetworkParams(void);
12extern void func_icmp(void);
13extern void func_SendARP(void);
14
15const 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
#define test
Definition: rosglue.h:37
const struct test winetest_testlist[]
Definition: testlist.c:7
void func_icmp(void)
void func_GetInterfaceName(void)
void func_GetExtendedUdpTable(void)
void func_GetOwnerModuleFromTcpEntry(void)
void func_GetExtendedTcpTable(void)
void func_GetOwnerModuleFromUdpEntry(void)
void func_SendARP(void)
void func_GetNetworkParams(void)