iphlpapi: Add CancelIPChangeNotify stub.
This commit is contained in:
parent
4c386998b0
commit
bf6a20fad3
|
@ -6,6 +6,7 @@
|
|||
@ stdcall AllocateAndGetIpNetTableFromStack( ptr long long long )
|
||||
@ stdcall AllocateAndGetTcpTableFromStack( ptr long long long )
|
||||
@ stdcall AllocateAndGetUdpTableFromStack( ptr long long long )
|
||||
@ stdcall CancelIPChangeNotify( ptr )
|
||||
@ stdcall CreateIpForwardEntry( ptr )
|
||||
@ stdcall CreateIpNetEntry( ptr )
|
||||
@ stdcall CreateProxyArpEntry( long long long )
|
||||
|
|
|
@ -199,6 +199,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.@)
|
||||
*
|
||||
|
|
|
@ -799,6 +799,7 @@ static void testGetPerAdapterInfo(void)
|
|||
/*
|
||||
still-to-be-tested 2K-onward functions:
|
||||
AddIPAddress
|
||||
CancelIPChangeNotify
|
||||
CreateProxyArpEntry
|
||||
DeleteIPAddress
|
||||
DeleteProxyArpEntry
|
||||
|
|
|
@ -111,6 +111,8 @@ DWORD WINAPI NotifyAddrChange(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 AddIPAddress(IPAddr Address, IPMask IpMask, DWORD IfIndex,
|
||||
|
|
Loading…
Reference in New Issue