mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
d0e5925de2
svn path=/trunk/; revision=72836
19 lines
372 B
C
19 lines
372 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_GetNetworkParams(void);
|
|
extern void func_icmp(void);
|
|
extern void func_SendARP(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "GetNetworkParams", func_GetNetworkParams },
|
|
{ "icmp", func_icmp },
|
|
{ "SendARP", func_SendARP },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|