iphlpapi: Add a stub for SetPerTcpConnectionEStats.
This commit is contained in:
parent
2eba32b936
commit
89d3f08ca2
|
@ -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 @@
|
||||||
#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)
|
||||||
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.@)
|
||||||
|
|
Loading…
Reference in New Issue