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
7796661b
Commit
7796661b
authored
Oct 27, 2014
by
Sebastian Lackner
Committed by
Alexandre Julliard
Nov 03, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Add stub for NotifyIpInterfaceChange.
Based on a patch by Yann Leretaille.
parent
2eded57f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
iphlpapi.spec
dlls/iphlpapi/iphlpapi.spec
+1
-1
iphlpapi_main.c
dlls/iphlpapi/iphlpapi_main.c
+13
-0
No files found.
dlls/iphlpapi/iphlpapi.spec
View file @
7796661b
...
...
@@ -233,7 +233,7 @@
@ stub NhpAllocateAndGetInterfaceInfoFromStack
@ stub NhpGetInterfaceIndexFromStack
@ stdcall NotifyAddrChange( ptr ptr )
#@ stub NotifyIpInterfaceChange
@ stdcall NotifyIpInterfaceChange( long ptr ptr long ptr )
@ stdcall NotifyRouteChange( ptr ptr )
#@ stub NotifyRouteChange2
@ stub NotifyRouteChangeEx
...
...
dlls/iphlpapi/iphlpapi_main.c
View file @
7796661b
...
...
@@ -2293,6 +2293,19 @@ DWORD WINAPI NotifyAddrChange(PHANDLE Handle, LPOVERLAPPED overlapped)
/******************************************************************
* NotifyIpInterfaceChange (IPHLPAPI.@)
*/
DWORD
WINAPI
NotifyIpInterfaceChange
(
ULONG
family
,
PVOID
callback
,
PVOID
context
,
BOOLEAN
init_notify
,
PHANDLE
handle
)
{
FIXME
(
"(family %d, callback %p, context %p, init_notify %d, handle %p): stub
\n
"
,
family
,
callback
,
context
,
init_notify
,
handle
);
if
(
handle
)
*
handle
=
NULL
;
return
ERROR_NOT_SUPPORTED
;
}
/******************************************************************
* NotifyRouteChange (IPHLPAPI.@)
*
* Notify caller whenever the ip routing table is changed.
...
...
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