ReactOS 0.4.16-dev-1946-g52006dd
testlist.c
Go to the documentation of this file.
1
2#define STANDALONE
3#include <apitest.h>
4
5extern void func_GetExtendedTcpTable(void);
6extern void func_GetExtendedUdpTable(void);
7extern void func_GetInterfaceName(void);
8extern void func_GetNetworkParams(void);
11extern void func_icmp(void);
12extern void func_SendARP(void);
13
14const 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 { "GetOwnerModuleFromUdpEntry", func_GetOwnerModuleFromUdpEntry },
22 { "icmp", func_icmp },
23 { "SendARP", func_SendARP },
24
25 { 0, 0 }
26};
27
#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)