1 #define __ROS_LONG64__ 2 3 #define STANDALONE 4 #include <apitest.h> 5 6 extern void func_GetInterfaceName(void); 7 extern void func_GetNetworkParams(void); 8 extern void func_icmp(void); 9 extern void func_SendARP(void); 10 11 const struct test winetest_testlist[] = 12 { 13 { "GetInterfaceName", func_GetInterfaceName }, 14 { "GetNetworkParams", func_GetNetworkParams }, 15 { "icmp", func_icmp }, 16 { "SendARP", func_SendARP }, 17 18 { 0, 0 } 19 }; 20 21