iphlpapi: Add stub for CancelMibChangeNotify2.

Based on a patch by Yann Leretaille.
This commit is contained in:
Sebastian Lackner 2014-10-27 02:29:21 +01:00 committed by Alexandre Julliard
parent d2bc004264
commit 2eded57ffe
2 changed files with 10 additions and 1 deletions

View File

@ -8,7 +8,7 @@
@ stdcall AllocateAndGetTcpTableFromStack( ptr long long long )
@ stdcall AllocateAndGetUdpTableFromStack( ptr long long long )
@ stdcall CancelIPChangeNotify( ptr )
#@ stub CancelMibChangeNotify2
@ stdcall CancelMibChangeNotify2( ptr )
#@ stub ConvertGuidToStringA
#@ stub ConvertGuidToStringW
#@ stub ConvertInterfaceAliasToLuid

View File

@ -198,6 +198,15 @@ BOOL WINAPI CancelIPChangeNotify(LPOVERLAPPED overlapped)
}
/******************************************************************
* CancelMibChangeNotify2 (IPHLPAPI.@)
*/
DWORD WINAPI CancelMibChangeNotify2(HANDLE handle)
{
FIXME("(handle %p): stub\n", handle);
return NO_ERROR;
}
/******************************************************************
* CreateIpForwardEntry (IPHLPAPI.@)