Hao Peng : iphlpapi: Add PfUnBindInterface function stub.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Aug 5 18:03:07 CDT 2014


Module: wine
Branch: master
Commit: 8128ddfac86c480cc25669e8ec08477dbe393976
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=8128ddfac86c480cc25669e8ec08477dbe393976

Author: Hao Peng <penghao at 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 at 8
 @ stub _PfSetLogBuffer at 28
 @ stub _PfTestPacket at 20
-@ stub _PfUnBindInterface at 4
+@ stdcall _PfUnBindInterface at 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)




More information about the wine-cvs mailing list