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
76eba12e
Commit
76eba12e
authored
Jun 07, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 07, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Added PfCreateInterface stub implementation.
parent
39503fdf
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
iphlpapi.spec
dlls/iphlpapi/iphlpapi.spec
+1
-1
iphlpapi_main.c
dlls/iphlpapi/iphlpapi_main.c
+11
-0
No files found.
dlls/iphlpapi/iphlpapi.spec
View file @
76eba12e
...
...
@@ -92,7 +92,7 @@
@ stub _PfAddGlobalFilterToInterface@8
@ stub _PfBindInterfaceToIPAddress@12
@ stub _PfBindInterfaceToIndex@16
@ st
ub _PfCreateInterface@24
@ st
dcall _PfCreateInterface@24(long long long long long ptr) PfCreateInterface
@ stub _PfDeleteInterface@4
@ stub _PfDeleteLog@0
@ stub _PfGetInterfaceStatistics@16
...
...
dlls/iphlpapi/iphlpapi_main.c
View file @
76eba12e
...
...
@@ -55,6 +55,7 @@
#include "ifenum.h"
#include "ipstats.h"
#include "ipifcons.h"
#include "fltdefs.h"
#include "wine/debug.h"
...
...
@@ -2256,3 +2257,13 @@ DWORD WINAPI UnenableRouter(OVERLAPPED * pOverlapped, LPDWORD lpdwEnableCount)
*/
return
ERROR_NOT_SUPPORTED
;
}
/******************************************************************
* PfCreateInterface (IPHLPAPI.@)
*/
DWORD
WINAPI
PfCreateInterface
(
DWORD
dwName
,
PFFORWARD_ACTION
inAction
,
PFFORWARD_ACTION
outAction
,
BOOL
bUseLog
,
BOOL
bMustBeUnique
,
INTERFACE_HANDLE
*
ppInterface
)
{
FIXME
(
"(%d %d %d %x %x %p) stub
\n
"
,
dwName
,
inAction
,
outAction
,
bUseLog
,
bMustBeUnique
,
ppInterface
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
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