iphlpapi: Add PfBindInterfaceToIPAddress function stub.
This commit is contained in:
parent
d016dc4004
commit
331092b54e
|
@ -245,7 +245,7 @@
|
|||
#@ stub ParseNetworkString
|
||||
@ stub _PfAddFiltersToInterface@24
|
||||
@ stub _PfAddGlobalFilterToInterface@8
|
||||
@ stub _PfBindInterfaceToIPAddress@12
|
||||
@ stdcall _PfBindInterfaceToIPAddress@12(long long ptr) PfBindInterfaceToIPAddress
|
||||
@ stub _PfBindInterfaceToIndex@16
|
||||
@ stdcall _PfCreateInterface@24(long long long long long ptr) PfCreateInterface
|
||||
@ stub _PfDeleteInterface@4
|
||||
|
|
|
@ -2510,6 +2510,15 @@ DWORD WINAPI PfCreateInterface(DWORD dwName, PFFORWARD_ACTION inAction, PFFORWAR
|
|||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* PfBindInterfaceToIPAddress(IPHLPAPI.@)
|
||||
*/
|
||||
DWORD WINAPI PfBindInterfaceToIPAddress(INTERFACE_HANDLE interface, PFADDRESSTYPE type, PBYTE ip)
|
||||
{
|
||||
FIXME("(%p %d %p) stub\n", interface, type, ip);
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* GetTcpTable2 (IPHLPAPI.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue