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
390881b9
Commit
390881b9
authored
Feb 13, 2017
by
Bruno Jesus
Committed by
Alexandre Julliard
Feb 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wlanapi: Add a stub for WlanScan.
Signed-off-by:
Bruno Jesus
<
00cpxxx@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0dd6771b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletion
+24
-1
main.c
dlls/wlanapi/main.c
+9
-0
wlanapi.spec
dlls/wlanapi/wlanapi.spec
+1
-1
wlanapi.h
include/wlanapi.h
+14
-0
No files found.
dlls/wlanapi/main.c
View file @
390881b9
...
...
@@ -128,6 +128,15 @@ DWORD WINAPI WlanOpenHandle(DWORD client_version, void *reserved, DWORD *negotia
return
ERROR_SUCCESS
;
}
DWORD
WINAPI
WlanScan
(
HANDLE
handle
,
const
GUID
*
guid
,
const
DOT11_SSID
*
ssid
,
const
WLAN_RAW_DATA
*
raw
,
void
*
reserved
)
{
FIXME
(
"(%p, %s, %p, %p, %p) stub
\n
"
,
handle
,
wine_dbgstr_guid
(
guid
),
ssid
,
raw
,
reserved
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
void
WINAPI
WlanFreeMemory
(
void
*
ptr
)
{
TRACE
(
"(%p)
\n
"
,
ptr
);
...
...
dlls/wlanapi/wlanapi.spec
View file @
390881b9
...
...
@@ -22,7 +22,7 @@
@ stub WlanRegisterNotification
@ stub WlanRenameProfile
@ stub WlanSaveTemporaryProfile
@ st
ub WlanScan
@ st
dcall WlanScan(ptr ptr ptr ptr ptr)
@ stub WlanSetAutoConfigParameter
@ stub WlanSetFilterList
@ stub WlanSetInterface
...
...
include/wlanapi.h
View file @
390881b9
...
...
@@ -45,10 +45,24 @@ typedef struct _WLAN_INTERFACE_INFO_LIST
WLAN_INTERFACE_INFO
InterfaceInfo
[
1
];
}
WLAN_INTERFACE_INFO_LIST
,
*
PWLAN_INTERFACE_INFO_LIST
;
#define DOT11_SSID_MAX_LENGTH 32
typedef
struct
_DOT11_SSID
{
DWORD
uSSIDLength
;
UCHAR
ucSSID
[
DOT11_SSID_MAX_LENGTH
];
}
DOT11_SSID
;
typedef
struct
_WLAN_RAW_DATA
{
DWORD
dwDataSize
;
BYTE
DataBlob
[
1
];
}
WLAN_RAW_DATA
,
*
PWLAN_RAW_DATA
;
DWORD
WINAPI
WlanCloseHandle
(
HANDLE
,
void
*
);
DWORD
WINAPI
WlanEnumInterfaces
(
HANDLE
,
void
*
,
WLAN_INTERFACE_INFO_LIST
**
);
DWORD
WINAPI
WlanOpenHandle
(
DWORD
,
void
*
,
DWORD
*
,
HANDLE
*
);
void
*
WINAPI
WlanAllocateMemory
(
DWORD
);
void
WINAPI
WlanFreeMemory
(
void
*
);
DWORD
WINAPI
WlanScan
(
HANDLE
,
const
GUID
*
,
const
DOT11_SSID
*
,
const
WLAN_RAW_DATA
*
,
void
*
);
#endif
/* _WLAN_WLANAPI_H */
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