iphlpapi: Add PfDeleteInterface function stub.
This commit is contained in:
parent
331092b54e
commit
240e66a281
|
@ -248,7 +248,7 @@
|
||||||
@ stdcall _PfBindInterfaceToIPAddress@12(long long ptr) PfBindInterfaceToIPAddress
|
@ stdcall _PfBindInterfaceToIPAddress@12(long long ptr) PfBindInterfaceToIPAddress
|
||||||
@ stub _PfBindInterfaceToIndex@16
|
@ stub _PfBindInterfaceToIndex@16
|
||||||
@ stdcall _PfCreateInterface@24(long long long long long ptr) PfCreateInterface
|
@ stdcall _PfCreateInterface@24(long long long long long ptr) PfCreateInterface
|
||||||
@ stub _PfDeleteInterface@4
|
@ stdcall _PfDeleteInterface@4(long) PfDeleteInterface
|
||||||
@ stub _PfDeleteLog@0
|
@ stub _PfDeleteLog@0
|
||||||
@ stub _PfGetInterfaceStatistics@16
|
@ stub _PfGetInterfaceStatistics@16
|
||||||
@ stub _PfMakeLog@4
|
@ stub _PfMakeLog@4
|
||||||
|
|
|
@ -2510,6 +2510,15 @@ DWORD WINAPI PfCreateInterface(DWORD dwName, PFFORWARD_ACTION inAction, PFFORWAR
|
||||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/******************************************************************
|
||||||
|
* PfDeleteInterface(IPHLPAPI.@)
|
||||||
|
*/
|
||||||
|
DWORD WINAPI PfDeleteInterface(INTERFACE_HANDLE interface)
|
||||||
|
{
|
||||||
|
FIXME("(%p) stub\n", interface);
|
||||||
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************************
|
/******************************************************************
|
||||||
* PfBindInterfaceToIPAddress(IPHLPAPI.@)
|
* PfBindInterfaceToIPAddress(IPHLPAPI.@)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue