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
09704a15
Commit
09704a15
authored
May 11, 2022
by
Brendan Shanks
Committed by
Alexandre Julliard
May 12, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add WINE_ALLOC_SIZE attribute to ExAllocatePool functions.
Signed-off-by:
Brendan Shanks
<
bshanks@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
26297e7a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
wdm.h
include/ddk/wdm.h
+4
-4
No files found.
include/ddk/wdm.h
View file @
09704a15
...
...
@@ -1656,10 +1656,10 @@ BOOLEAN WINAPI ExAcquireResourceExclusiveLite(ERESOURCE*,BOOLEAN);
BOOLEAN
WINAPI
ExAcquireResourceSharedLite
(
ERESOURCE
*
,
BOOLEAN
);
BOOLEAN
WINAPI
ExAcquireSharedStarveExclusive
(
ERESOURCE
*
,
BOOLEAN
);
BOOLEAN
WINAPI
ExAcquireSharedWaitForExclusive
(
ERESOURCE
*
,
BOOLEAN
);
PVOID
WINAPI
ExAllocatePool
(
POOL_TYPE
,
SIZE_T
);
PVOID
WINAPI
ExAllocatePoolWithQuota
(
POOL_TYPE
,
SIZE_T
);
PVOID
WINAPI
ExAllocatePoolWithTag
(
POOL_TYPE
,
SIZE_T
,
ULONG
);
PVOID
WINAPI
ExAllocatePoolWithQuotaTag
(
POOL_TYPE
,
SIZE_T
,
ULONG
);
PVOID
WINAPI
ExAllocatePool
(
POOL_TYPE
,
SIZE_T
)
__WINE_ALLOC_SIZE
(
2
)
;
PVOID
WINAPI
ExAllocatePoolWithQuota
(
POOL_TYPE
,
SIZE_T
)
__WINE_ALLOC_SIZE
(
2
)
;
PVOID
WINAPI
ExAllocatePoolWithTag
(
POOL_TYPE
,
SIZE_T
,
ULONG
)
__WINE_ALLOC_SIZE
(
2
)
;
PVOID
WINAPI
ExAllocatePoolWithQuotaTag
(
POOL_TYPE
,
SIZE_T
,
ULONG
)
__WINE_ALLOC_SIZE
(
2
)
;
void
WINAPI
ExDeleteNPagedLookasideList
(
PNPAGED_LOOKASIDE_LIST
);
void
WINAPI
ExDeletePagedLookasideList
(
PPAGED_LOOKASIDE_LIST
);
NTSTATUS
WINAPI
ExDeleteResourceLite
(
ERESOURCE
*
);
...
...
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