Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4227eb41
Commit
4227eb41
authored
Aug 19, 2016
by
Austin English
Committed by
Alexandre Julliard
Aug 19, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wlanapi: Add WlanCloseHandle() stub.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e9e538ab
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
main.c
dlls/wlanapi/main.c
+6
-0
wlanapi.spec
dlls/wlanapi/wlanapi.spec
+1
-1
wlanapi.h
include/wlanapi.h
+1
-0
No files found.
dlls/wlanapi/main.c
View file @
4227eb41
...
...
@@ -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
)
{
...
...
dlls/wlanapi/wlanapi.spec
View file @
4227eb41
@ stub WlanAllocateMemory
@ st
ub WlanCloseHandle
@ st
dcall WlanCloseHandle(ptr ptr)
@ stub WlanConnect
@ stub WlanDeleteProfile
@ stub WlanDisconnect
...
...
include/wlanapi.h
View file @
4227eb41
...
...
@@ -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
*
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment