mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
1f7304870c
- Add quite a lot of tests for IOCTL_TCP_QUERY_INFORMATION_EX This IOCTL is quite important because that's how iphlpapi gets data from it. Also, this can be used as a viewer for quite a lot SNMP info as described here: http://www.oidview.com/mibs/0/RFC1213-MIB.html svn path=/trunk/; revision=66070
16 lines
277 B
C
16 lines
277 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_InterfaceInfo(void);
|
|
extern void func_tcp_info(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "InterfaceInfo", func_InterfaceInfo },
|
|
{ "tcp_info", func_tcp_info },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|