iphlpapi: Add stub for CancelMibChangeNotify2.
Based on a patch by Yann Leretaille.
This commit is contained in:
parent
d2bc004264
commit
2eded57ffe
|
@ -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
|
||||
|
|
|
@ -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.@)
|
||||
|
|
Loading…
Reference in New Issue