Commit 331092b5 authored by Hao Peng's avatar Hao Peng Committed by Alexandre Julliard

iphlpapi: Add PfBindInterfaceToIPAddress function stub.

parent d016dc40
...@@ -245,7 +245,7 @@ ...@@ -245,7 +245,7 @@
#@ stub ParseNetworkString #@ stub ParseNetworkString
@ stub _PfAddFiltersToInterface@24 @ stub _PfAddFiltersToInterface@24
@ stub _PfAddGlobalFilterToInterface@8 @ stub _PfAddGlobalFilterToInterface@8
@ stub _PfBindInterfaceToIPAddress@12 @ 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 @ stub _PfDeleteInterface@4
......
...@@ -2511,6 +2511,15 @@ DWORD WINAPI PfCreateInterface(DWORD dwName, PFFORWARD_ACTION inAction, PFFORWAR ...@@ -2511,6 +2511,15 @@ DWORD WINAPI PfCreateInterface(DWORD dwName, PFFORWARD_ACTION inAction, PFFORWAR
} }
/****************************************************************** /******************************************************************
* 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.@) * GetTcpTable2 (IPHLPAPI.@)
*/ */
ULONG WINAPI GetTcpTable2(PMIB_TCPTABLE2 table, PULONG size, BOOL order) ULONG WINAPI GetTcpTable2(PMIB_TCPTABLE2 table, PULONG size, BOOL order)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment