Commit 89d3f08c authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

iphlpapi: Add a stub for SetPerTcpConnectionEStats.

parent 2eba32b9
...@@ -285,7 +285,7 @@ ...@@ -285,7 +285,7 @@
#@ stub SetNetworkInformation #@ stub SetNetworkInformation
#@ stub SetPerTcp6ConnectionEStats #@ stub SetPerTcp6ConnectionEStats
#@ stub SetPerTcp6ConnectionStats #@ stub SetPerTcp6ConnectionStats
#@ stub SetPerTcpConnectionEStats @ stdcall SetPerTcpConnectionEStats( ptr long ptr long long long )
#@ stub SetPerTcpConnectionStats #@ stub SetPerTcpConnectionStats
@ stub SetProxyArpEntryToStack @ stub SetProxyArpEntryToStack
@ stub SetRouteWithRef @ stub SetRouteWithRef
......
...@@ -53,6 +53,7 @@ ...@@ -53,6 +53,7 @@
#include "fltdefs.h" #include "fltdefs.h"
#include "ifdef.h" #include "ifdef.h"
#include "netioapi.h" #include "netioapi.h"
#include "tcpestats.h"
#include "wine/debug.h" #include "wine/debug.h"
#include "wine/unicode.h" #include "wine/unicode.h"
...@@ -2708,6 +2709,17 @@ DWORD WINAPI SetTcpEntry(PMIB_TCPROW pTcpRow) ...@@ -2708,6 +2709,17 @@ DWORD WINAPI SetTcpEntry(PMIB_TCPROW pTcpRow)
return 0; 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.@) * UnenableRouter (IPHLPAPI.@)
......
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