Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
89d3f08c
Commit
89d3f08c
authored
Aug 09, 2015
by
Bruno Jesus
Committed by
Alexandre Julliard
Aug 17, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Add a stub for SetPerTcpConnectionEStats.
parent
2eba32b9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
iphlpapi.spec
dlls/iphlpapi/iphlpapi.spec
+1
-1
iphlpapi_main.c
dlls/iphlpapi/iphlpapi_main.c
+12
-0
No files found.
dlls/iphlpapi/iphlpapi.spec
View file @
89d3f08c
...
...
@@ -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
...
...
dlls/iphlpapi/iphlpapi_main.c
View file @
89d3f08c
...
...
@@ -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.@)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment