[pkg-wine-party] [wine] 53/66: wlanapi: Add WlanCloseHandle() stub.
Jens Reyer
jreyer-guest at moszumanska.debian.org
Mon Oct 10 13:03:26 UTC 2016
This is an automated email from the git hooks/post-receive script.
jreyer-guest pushed a commit to branch upstream-stable
in repository wine.
commit e23bd1b3034c46b948f846a0195bca8861884b1a
Author: Austin English <austinenglish at gmail.com>
Date: Fri Aug 19 02:14:19 2016 -0500
wlanapi: Add WlanCloseHandle() stub.
Signed-off-by: Austin English <austinenglish at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit 4227eb417dd0fabb7a1d6000a49a234b05e37be5)
Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
dlls/wlanapi/main.c | 6 ++++++
dlls/wlanapi/wlanapi.spec | 2 +-
include/wlanapi.h | 1 +
3 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/dlls/wlanapi/main.c b/dlls/wlanapi/main.c
index 3674f79..c9fbae0 100644
--- a/dlls/wlanapi/main.c
+++ b/dlls/wlanapi/main.c
@@ -34,6 +34,12 @@ DWORD WINAPI WlanEnumInterfaces(HANDLE client, void *reserved, WLAN_INTERFACE_IN
return ERROR_CALL_NOT_IMPLEMENTED;
}
+DWORD WINAPI WlanCloseHandle(HANDLE client_handle, VOID *reserved)
+{
+ FIXME("(%p, %p) stub\n", client_handle, reserved);
+ return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
DWORD WINAPI WlanOpenHandle(DWORD clientVersion, PVOID reserved,
PDWORD negotiatedVersion, PHANDLE clientHandle)
{
diff --git a/dlls/wlanapi/wlanapi.spec b/dlls/wlanapi/wlanapi.spec
index e55bf06..59454f4 100644
--- a/dlls/wlanapi/wlanapi.spec
+++ b/dlls/wlanapi/wlanapi.spec
@@ -1,5 +1,5 @@
@ stub WlanAllocateMemory
-@ stub WlanCloseHandle
+@ stdcall WlanCloseHandle(ptr ptr)
@ stub WlanConnect
@ stub WlanDeleteProfile
@ stub WlanDisconnect
diff --git a/include/wlanapi.h b/include/wlanapi.h
index 63922be..73b4583 100644
--- a/include/wlanapi.h
+++ b/include/wlanapi.h
@@ -45,6 +45,7 @@ typedef struct _WLAN_INTERFACE_INFO_LIST
WLAN_INTERFACE_INFO InterfaceInfo[1];
} WLAN_INTERFACE_INFO_LIST, *PWLAN_INTERFACE_INFO_LIST;
+DWORD WINAPI WlanCloseHandle(HANDLE, void *);
DWORD WINAPI WlanEnumInterfaces(HANDLE, void *, WLAN_INTERFACE_INFO_LIST **);
DWORD WINAPI WlanOpenHandle(DWORD, void *, DWORD *, HANDLE *);
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git
More information about the pkg-wine-party
mailing list