Commit 7796661b authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

iphlpapi: Add stub for NotifyIpInterfaceChange.

Based on a patch by Yann Leretaille.
parent 2eded57f
...@@ -233,7 +233,7 @@ ...@@ -233,7 +233,7 @@
@ stub NhpAllocateAndGetInterfaceInfoFromStack @ stub NhpAllocateAndGetInterfaceInfoFromStack
@ stub NhpGetInterfaceIndexFromStack @ stub NhpGetInterfaceIndexFromStack
@ stdcall NotifyAddrChange( ptr ptr ) @ stdcall NotifyAddrChange( ptr ptr )
#@ stub NotifyIpInterfaceChange @ stdcall NotifyIpInterfaceChange( long ptr ptr long ptr )
@ stdcall NotifyRouteChange( ptr ptr ) @ stdcall NotifyRouteChange( ptr ptr )
#@ stub NotifyRouteChange2 #@ stub NotifyRouteChange2
@ stub NotifyRouteChangeEx @ stub NotifyRouteChangeEx
......
...@@ -2293,6 +2293,19 @@ DWORD WINAPI NotifyAddrChange(PHANDLE Handle, LPOVERLAPPED overlapped) ...@@ -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.@) * NotifyRouteChange (IPHLPAPI.@)
* *
* Notify caller whenever the ip routing table is changed. * Notify caller whenever the ip routing table is changed.
......
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