Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
1e036633
Commit
1e036633
authored
Feb 13, 2018
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add definitions for SECTION_IMAGE_INFORMATION flags.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
882742e1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
2 deletions
+24
-2
virtual.c
dlls/ntdll/virtual.c
+1
-1
server_protocol.h
include/wine/server_protocol.h
+5
-0
winternl.h
include/winternl.h
+13
-1
protocol.def
server/protocol.def
+5
-0
No files found.
dlls/ntdll/virtual.c
View file @
1e036633
...
...
@@ -3228,7 +3228,7 @@ NTSTATUS WINAPI NtQuerySection( HANDLE handle, SECTION_INFORMATION_CLASS class,
info
->
DllCharacteristics
=
image_info
.
dll_charact
;
info
->
Machine
=
image_info
.
machine
;
info
->
ImageContainsCode
=
image_info
.
contains_code
;
info
->
ImageFlags
=
image_info
.
image_flags
;
info
->
u
.
ImageFlags
=
image_info
.
image_flags
;
info
->
LoaderFlags
=
image_info
.
loader_flags
;
info
->
ImageFileSize
=
image_info
.
file_size
;
info
->
CheckSum
=
image_info
.
checksum
;
...
...
include/wine/server_protocol.h
View file @
1e036633
...
...
@@ -701,6 +701,11 @@ typedef struct
unsigned
int
file_size
;
unsigned
int
checksum
;
}
pe_image_info_t
;
#define IMAGE_FLAGS_ComPlusNativeReady 0x01
#define IMAGE_FLAGS_ComPlusILOnly 0x02
#define IMAGE_FLAGS_ImageDynamicallyRelocated 0x04
#define IMAGE_FLAGS_ImageMappedFlat 0x08
#define IMAGE_FLAGS_BaseBelow4gb 0x10
struct
rawinput_device
{
...
...
include/winternl.h
View file @
1e036633
...
...
@@ -1965,7 +1965,19 @@ typedef struct _SECTION_IMAGE_INFORMATION {
USHORT
DllCharacteristics
;
USHORT
Machine
;
BOOLEAN
ImageContainsCode
;
UCHAR
ImageFlags
;
union
{
UCHAR
ImageFlags
;
struct
{
UCHAR
ComPlusNativeReady
:
1
;
UCHAR
ComPlusILOnly
:
1
;
UCHAR
ImageDynamicallyRelocated
:
1
;
UCHAR
ImageMappedFlat
:
1
;
UCHAR
BaseBelow4gb
:
1
;
UCHAR
Reserved
:
3
;
}
DUMMYSTRUCTNAME
;
}
DUMMYUNIONNAME
;
ULONG
LoaderFlags
;
ULONG
ImageFileSize
;
ULONG
CheckSum
;
...
...
server/protocol.def
View file @
1e036633
...
...
@@ -717,6 +717,11 @@ typedef struct
unsigned int file_size;
unsigned int checksum;
} pe_image_info_t;
#define IMAGE_FLAGS_ComPlusNativeReady 0x01
#define IMAGE_FLAGS_ComPlusILOnly 0x02
#define IMAGE_FLAGS_ImageDynamicallyRelocated 0x04
#define IMAGE_FLAGS_ImageMappedFlat 0x08
#define IMAGE_FLAGS_BaseBelow4gb 0x10
struct rawinput_device
{
...
...
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