mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
29 lines
952 B
C
29 lines
952 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_GetExtendedTcpTable(void);
|
|
extern void func_GetExtendedUdpTable(void);
|
|
extern void func_GetInterfaceName(void);
|
|
extern void func_GetNetworkParams(void);
|
|
extern void func_GetOwnerModuleFromTcpEntry(void);
|
|
extern void func_GetOwnerModuleFromUdpEntry(void);
|
|
extern void func_icmp(void);
|
|
extern void func_SendARP(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "GetExtendedTcpTable", func_GetExtendedTcpTable },
|
|
{ "GetExtendedUdpTable", func_GetExtendedUdpTable },
|
|
{ "GetInterfaceName", func_GetInterfaceName },
|
|
{ "GetNetworkParams", func_GetNetworkParams },
|
|
{ "GetOwnerModuleFromTcpEntry", func_GetOwnerModuleFromTcpEntry },
|
|
{ "GetOwnerModuleFromUdpEntry", func_GetOwnerModuleFromUdpEntry },
|
|
{ "icmp", func_icmp },
|
|
{ "SendARP", func_SendARP },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|