Module: wine Branch: master Commit: 8128ddfac86c480cc25669e8ec08477dbe393976 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8128ddfac86c480cc25669e8ec...
Author: Hao Peng penghao@linuxdeepin.com Date: Thu Jul 31 15:28:04 2014 +0800
iphlpapi: Add PfUnBindInterface function stub.
---
dlls/iphlpapi/iphlpapi.spec | 2 +- dlls/iphlpapi/iphlpapi_main.c | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/dlls/iphlpapi/iphlpapi.spec b/dlls/iphlpapi/iphlpapi.spec index 1e422f4..9e66d67 100644 --- a/dlls/iphlpapi/iphlpapi.spec +++ b/dlls/iphlpapi/iphlpapi.spec @@ -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 diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c index 0d9e371..88db25a 100644 --- a/dlls/iphlpapi/iphlpapi_main.c +++ b/dlls/iphlpapi/iphlpapi_main.c @@ -2511,6 +2511,15 @@ DWORD WINAPI PfCreateInterface(DWORD dwName, PFFORWARD_ACTION inAction, PFFORWAR }
/****************************************************************** + * PfUnBindInterface (IPHLPAPI.@) + */ +DWORD WINAPI PfUnBindInterface(INTERFACE_HANDLE interface) +{ + FIXME("(%p) stub\n", interface); + return ERROR_CALL_NOT_IMPLEMENTED; +} + +/****************************************************************** * PfDeleteInterface(IPHLPAPI.@) */ DWORD WINAPI PfDeleteInterface(INTERFACE_HANDLE interface)