Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastian Mayr
wine
Commits
9a29b0ce
Commit
9a29b0ce
authored
23 years ago
by
Andreas Mohr
Committed by
Alexandre Julliard
23 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added some defines and offsets.
parent
f16b401e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/winnt.h
+8
-3
8 additions, 3 deletions
include/winnt.h
with
8 additions
and
3 deletions
include/winnt.h
+
8
−
3
View file @
9a29b0ce
...
...
@@ -2461,12 +2461,16 @@ typedef struct _IMAGE_VXD_HEADER {
#define IMAGE_FILE_EXECUTABLE_IMAGE 0x0002
#define IMAGE_FILE_LINE_NUMS_STRIPPED 0x0004
#define IMAGE_FILE_LOCAL_SYMS_STRIPPED 0x0008
#define IMAGE_FILE_AGGRESIVE_WS_TRIM 0x0010
#define IMAGE_FILE_LARGE_ADDRESS_AWARE 0x0020
#define IMAGE_FILE_16BIT_MACHINE 0x0040
#define IMAGE_FILE_BYTES_REVERSED_LO 0x0080
#define IMAGE_FILE_32BIT_MACHINE 0x0100
#define IMAGE_FILE_DEBUG_STRIPPED 0x0200
#define IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP 0x0400
#define IMAGE_FILE_SYSTEM 0x1000
#define IMAGE_FILE_DLL 0x2000
#define IMAGE_FILE_UP_SYSTEM_ONLY 0x4000
#define IMAGE_FILE_BYTES_REVERSED_HI 0x8000
/* These are the settings of the Machine field. */
...
...
@@ -2580,12 +2584,13 @@ typedef struct _IMAGE_OPTIONAL_HEADER {
DWORD
LoaderFlags
;
DWORD
NumberOfRvaAndSizes
;
IMAGE_DATA_DIRECTORY
DataDirectory
[
IMAGE_NUMBEROF_DIRECTORY_ENTRIES
];
/* 0x60 */
/* 0xE0 */
}
IMAGE_OPTIONAL_HEADER
,
*
PIMAGE_OPTIONAL_HEADER
;
typedef
struct
_IMAGE_NT_HEADERS
{
DWORD
Signature
;
/* "PE"\0\0 */
IMAGE_FILE_HEADER
FileHeader
;
IMAGE_OPTIONAL_HEADER
OptionalHeader
;
DWORD
Signature
;
/* "PE"\0\0 */
/* 0x00 */
IMAGE_FILE_HEADER
FileHeader
;
/* 0x04 */
IMAGE_OPTIONAL_HEADER
OptionalHeader
;
/* 0x18 */
}
IMAGE_NT_HEADERS
,
*
PIMAGE_NT_HEADERS
;
#define IMAGE_SIZEOF_SHORT_NAME 8
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment