iphlpapi: Add PfUnBindInterface function stub.

This commit is contained in:
Hao Peng 2014-07-31 15:28:04 +08:00 committed by Alexandre Julliard
parent 240e66a281
commit 8128ddfac8
2 changed files with 10 additions and 1 deletions

View File

@ -258,7 +258,7 @@
@ stub _PfRemoveGlobalFilterFromInterface@8
@ stub _PfSetLogBuffer@28
@ stub _PfTestPacket@20
@ stub _PfUnBindInterface@4
@ stdcall _PfUnBindInterface@4(long) PfUnBindInterface
#@ stub register_icmp
#@ stub ResolveIpNetEntry2
#@ stub ResolveNeighbor

View File

@ -2510,6 +2510,15 @@ DWORD WINAPI PfCreateInterface(DWORD dwName, PFFORWARD_ACTION inAction, PFFORWAR
return ERROR_CALL_NOT_IMPLEMENTED;
}
/******************************************************************
* PfUnBindInterface (IPHLPAPI.@)
*/
DWORD WINAPI PfUnBindInterface(INTERFACE_HANDLE interface)
{
FIXME("(%p) stub\n", interface);
return ERROR_CALL_NOT_IMPLEMENTED;
}
/******************************************************************
* PfDeleteInterface(IPHLPAPI.@)
*/