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
bb95b706
Commit
bb95b706
authored
Jun 17, 2012
by
Thomas Faber
Committed by
Alexandre Julliard
Jun 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Make IMAGE_COR20_HEADER declaration compatible with PSDK headers.
parent
a6510b3f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
asmcache.c
dlls/fusion/tests/asmcache.c
+1
-1
winnt.h
include/winnt.h
+4
-1
pe.c
tools/winedump/pe.c
+1
-1
No files found.
dlls/fusion/tests/asmcache.c
View file @
bb95b706
...
...
@@ -412,7 +412,7 @@ static struct _tagASSEMBLY
5
,
/* MinorRuntimeVersion */
{
0x2188
,
0x1B4
},
/* MetaData */
COMIMAGE_FLAGS_ILONLY
|
COMIMAGE_FLAGS_STRONGNAMESIGNED
,
/* Flags */
0
,
/* EntryPointToken */
{
0
}
,
/* EntryPointToken */
{
0x20D0
,
0xB8
},
/* Resources */
{
0x2050
,
0x80
},
/* StrongNameSignature */
{
0
},
/* CodeManagerTable */
...
...
include/winnt.h
View file @
bb95b706
...
...
@@ -3429,7 +3429,10 @@ typedef struct IMAGE_COR20_HEADER
IMAGE_DATA_DIRECTORY
MetaData
;
DWORD
Flags
;
DWORD
EntryPointToken
;
union
{
DWORD
EntryPointToken
;
DWORD
EntryPointRVA
;
}
DUMMYUNIONNAME
;
IMAGE_DATA_DIRECTORY
Resources
;
IMAGE_DATA_DIRECTORY
StrongNameSignature
;
...
...
tools/winedump/pe.c
View file @
bb95b706
...
...
@@ -966,7 +966,7 @@ static void dump_dir_clr_header(void)
print_dword
(
"Header Size"
,
dir
->
cb
);
print_ver
(
"Required runtime version"
,
dir
->
MajorRuntimeVersion
,
dir
->
MinorRuntimeVersion
);
print_clrflags
(
"Flags"
,
dir
->
Flags
);
print_dword
(
"EntryPointToken"
,
dir
->
EntryPointToken
);
print_dword
(
"EntryPointToken"
,
dir
->
u
.
EntryPointToken
);
printf
(
"
\n
"
);
printf
(
"CLR Data Directory
\n
"
);
print_clrdirectory
(
"MetaData"
,
&
dir
->
MetaData
);
...
...
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