iphlpapi: Add PfUnBindInterface function stub.
This commit is contained in:
parent
240e66a281
commit
8128ddfac8
|
@ -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
|
||||
|
|
|
@ -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.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue