iphlpapi: Add a stub for SetPerTcpConnectionEStats.

oldstable
Bruno Jesus 2015-08-09 00:11:35 +08:00 committed by Alexandre Julliard
parent 2eba32b936
commit 89d3f08ca2
2 changed files with 13 additions and 1 deletions

View File

@ -285,7 +285,7 @@
#@ stub SetNetworkInformation
#@ stub SetPerTcp6ConnectionEStats
#@ stub SetPerTcp6ConnectionStats
#@ stub SetPerTcpConnectionEStats
@ stdcall SetPerTcpConnectionEStats( ptr long ptr long long long )
#@ stub SetPerTcpConnectionStats
@ stub SetProxyArpEntryToStack
@ stub SetRouteWithRef

View File

@ -53,6 +53,7 @@
#include "fltdefs.h"
#include "ifdef.h"
#include "netioapi.h"
#include "tcpestats.h"
#include "wine/debug.h"
#include "wine/unicode.h"
@ -2708,6 +2709,17 @@ DWORD WINAPI SetTcpEntry(PMIB_TCPROW pTcpRow)
return 0;
}
/******************************************************************
* SetPerTcpConnectionEStats (IPHLPAPI.@)
*/
DWORD WINAPI SetPerTcpConnectionEStats(PMIB_TCPROW row, TCP_ESTATS_TYPE state, PBYTE rw,
ULONG version, ULONG size, ULONG offset)
{
FIXME("(row %p, state %d, rw %p, version %u, size %u, offset %u): stub\n",
row, state, rw, version, size, offset);
return ERROR_NOT_SUPPORTED;
}
/******************************************************************
* UnenableRouter (IPHLPAPI.@)