Commit d2581e62 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

iphlpapi/tests: Add simple tests for the Get*StatisticsEx functions.

parent 50e7090a
......@@ -192,4 +192,17 @@ typedef struct _MIB_ICMP
MIBICMPINFO stats;
} MIB_ICMP, *PMIB_ICMP;
typedef struct _MIBICMPSTATS_EX
{
DWORD dwMsgs;
DWORD dwErrors;
DWORD rgdwTypeCount[256];
} MIBICMPSTATS_EX, *PMIBICMPSTATS_EX;
typedef struct _MIB_ICMP_EX
{
MIBICMPSTATS_EX icmpInStats;
MIBICMPSTATS_EX icmpOutStats;
} MIB_ICMP_EX, *PMIB_ICMP_EX;
#endif /* __WINE_IPMIB_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment