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
9bdd0857
Commit
9bdd0857
authored
Jun 29, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Add some tests for NtQueryVirtualMemory(MemoryImageInformation).
parent
3d383c46
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
228 additions
and
0 deletions
+228
-0
virtual.c
dlls/ntdll/tests/virtual.c
+211
-0
winternl.h
include/winternl.h
+17
-0
No files found.
dlls/ntdll/tests/virtual.c
View file @
9bdd0857
This diff is collapsed.
Click to expand it.
include/winternl.h
View file @
9bdd0857
...
...
@@ -2127,6 +2127,23 @@ typedef struct _MEMORY_REGION_INFORMATION
ULONG_PTR
NodePreference
;
}
MEMORY_REGION_INFORMATION
,
*
PMEMORY_REGION_INFORMATION
;
typedef
struct
_MEMORY_IMAGE_INFORMATION
{
PVOID
ImageBase
;
SIZE_T
SizeOfImage
;
union
{
ULONG
ImageFlags
;
struct
{
ULONG
ImagePartialMap
:
1
;
ULONG
ImageNotExecutable
:
1
;
ULONG
ImageSigningLevel
:
4
;
ULONG
Reserved
:
26
;
};
};
}
MEMORY_IMAGE_INFORMATION
,
*
PMEMORY_IMAGE_INFORMATION
;
typedef
enum
_MUTANT_INFORMATION_CLASS
{
MutantBasicInformation
...
...
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