Commit bf6a20fa authored by David Bartley's avatar David Bartley Committed by Alexandre Julliard

iphlpapi: Add CancelIPChangeNotify stub.

parent 4c386998
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
@ stdcall AllocateAndGetIpNetTableFromStack( ptr long long long ) @ stdcall AllocateAndGetIpNetTableFromStack( ptr long long long )
@ stdcall AllocateAndGetTcpTableFromStack( ptr long long long ) @ stdcall AllocateAndGetTcpTableFromStack( ptr long long long )
@ stdcall AllocateAndGetUdpTableFromStack( ptr long long long ) @ stdcall AllocateAndGetUdpTableFromStack( ptr long long long )
@ stdcall CancelIPChangeNotify( ptr )
@ stdcall CreateIpForwardEntry( ptr ) @ stdcall CreateIpForwardEntry( ptr )
@ stdcall CreateIpNetEntry( ptr ) @ stdcall CreateIpNetEntry( ptr )
@ stdcall CreateProxyArpEntry( long long long ) @ stdcall CreateProxyArpEntry( long long long )
......
...@@ -200,6 +200,30 @@ DWORD WINAPI AllocateAndGetIpAddrTableFromStack(PMIB_IPADDRTABLE *ppIpAddrTable, ...@@ -200,6 +200,30 @@ DWORD WINAPI AllocateAndGetIpAddrTableFromStack(PMIB_IPADDRTABLE *ppIpAddrTable,
/****************************************************************** /******************************************************************
* CancelIPChangeNotify (IPHLPAPI.@)
*
* Cancel a previous notification created by NotifyAddrChange or
* NotifyRouteChange.
*
* PARAMS
* overlapped [In] overlapped structure that notifies the caller
*
* RETURNS
* Success: TRUE
* Failure: FALSE
*
* FIXME
* Stub, returns FALSE.
*/
BOOL WINAPI CancelIPChangeNotify(LPOVERLAPPED overlapped)
{
FIXME("(overlapped %p): stub\n", overlapped);
return FALSE;
}
/******************************************************************
* CreateIpForwardEntry (IPHLPAPI.@) * CreateIpForwardEntry (IPHLPAPI.@)
* *
* Create a route in the local computer's IP table. * Create a route in the local computer's IP table.
......
...@@ -799,6 +799,7 @@ static void testGetPerAdapterInfo(void) ...@@ -799,6 +799,7 @@ static void testGetPerAdapterInfo(void)
/* /*
still-to-be-tested 2K-onward functions: still-to-be-tested 2K-onward functions:
AddIPAddress AddIPAddress
CancelIPChangeNotify
CreateProxyArpEntry CreateProxyArpEntry
DeleteIPAddress DeleteIPAddress
DeleteProxyArpEntry DeleteProxyArpEntry
......
...@@ -111,6 +111,8 @@ DWORD WINAPI NotifyAddrChange(PHANDLE Handle, LPOVERLAPPED overlapped); ...@@ -111,6 +111,8 @@ DWORD WINAPI NotifyAddrChange(PHANDLE Handle, LPOVERLAPPED overlapped);
DWORD WINAPI NotifyRouteChange(PHANDLE Handle, LPOVERLAPPED overlapped); DWORD WINAPI NotifyRouteChange(PHANDLE Handle, LPOVERLAPPED overlapped);
BOOL WINAPI CancelIPChangeNotify(LPOVERLAPPED overlapped);
DWORD WINAPI GetAdapterIndex(IN LPWSTR AdapterName, OUT PULONG IfIndex); DWORD WINAPI GetAdapterIndex(IN LPWSTR AdapterName, OUT PULONG IfIndex);
DWORD WINAPI AddIPAddress(IPAddr Address, IPMask IpMask, DWORD IfIndex, DWORD WINAPI AddIPAddress(IPAddr Address, IPMask IpMask, DWORD IfIndex,
......
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