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
57ce3b91
Commit
57ce3b91
authored
Nov 30, 2022
by
Alex Henrie
Committed by
Alexandre Julliard
Dec 01, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Annotate WlanAllocateMemory with __WINE_(ALLOC_SIZE|DEALLOC|MALLOC).
parent
6136b547
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
wlanapi.h
include/wlanapi.h
+1
-1
No files found.
include/wlanapi.h
View file @
57ce3b91
...
...
@@ -247,8 +247,8 @@ typedef struct _WLAN_HOSTED_NETWORK_STATUS
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
*
);
void
*
WINAPI
WlanAllocateMemory
(
DWORD
)
__WINE_ALLOC_SIZE
(
1
)
__WINE_DEALLOC
(
WlanFreeMemory
)
__WINE_MALLOC
;
DWORD
WINAPI
WlanScan
(
HANDLE
,
const
GUID
*
,
const
DOT11_SSID
*
,
const
WLAN_RAW_DATA
*
,
void
*
);
DWORD
WINAPI
WlanRegisterNotification
(
HANDLE
,
DWORD
,
BOOL
,
WLAN_NOTIFICATION_CALLBACK
,
void
*
,
void
*
,
DWORD
*
);
DWORD
WINAPI
WlanGetAvailableNetworkList
(
HANDLE
,
const
GUID
*
,
DWORD
,
void
*
,
WLAN_AVAILABLE_NETWORK_LIST
**
);
...
...
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