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
7a70f9f5
Commit
7a70f9f5
authored
Aug 03, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 03, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imagehlp: Add two missing fields.
parent
d76b19ab
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
14 deletions
+21
-14
access.c
dlls/imagehlp/access.c
+2
-0
dbghelp.h
include/dbghelp.h
+3
-1
imagehlp.h
include/imagehlp.h
+16
-13
No files found.
dlls/imagehlp/access.c
View file @
7a70f9f5
...
...
@@ -48,6 +48,8 @@ static LOADED_IMAGE IMAGEHLP_EmptyLoadedImage = {
1
,
/* Characteristics */
FALSE
,
/* fSystemImage */
FALSE
,
/* fDOSImage */
FALSE
,
/* fReadOnly */
0
,
/* Version */
{
&
IMAGEHLP_EmptyLoadedImage
.
Links
,
&
IMAGEHLP_EmptyLoadedImage
.
Links
},
/* Links */
148
,
/* SizeOfImage; */
};
...
...
include/dbghelp.h
View file @
7a70f9f5
...
...
@@ -27,7 +27,7 @@ extern "C" {
typedef
struct
_LOADED_IMAGE
{
LPSTR
ModuleName
;
PSTR
ModuleName
;
HANDLE
hFile
;
PUCHAR
MappedAddress
;
PIMAGE_NT_HEADERS
FileHeader
;
...
...
@@ -37,6 +37,8 @@ typedef struct _LOADED_IMAGE
ULONG
Characteristics
;
BOOLEAN
fSystemImage
;
BOOLEAN
fDOSImage
;
BOOLEAN
fReadOnly
;
UCHAR
Version
;
LIST_ENTRY
Links
;
ULONG
SizeOfImage
;
}
LOADED_IMAGE
,
*
PLOADED_IMAGE
;
...
...
include/imagehlp.h
View file @
7a70f9f5
...
...
@@ -158,19 +158,22 @@ typedef enum {
* Structures
*/
typedef
struct
_LOADED_IMAGE
{
LPSTR
ModuleName
;
HANDLE
hFile
;
PUCHAR
MappedAddress
;
PIMAGE_NT_HEADERS
FileHeader
;
PIMAGE_SECTION_HEADER
LastRvaSection
;
ULONG
NumberOfSections
;
PIMAGE_SECTION_HEADER
Sections
;
ULONG
Characteristics
;
BOOLEAN
fSystemImage
;
BOOLEAN
fDOSImage
;
LIST_ENTRY
Links
;
ULONG
SizeOfImage
;
typedef
struct
_LOADED_IMAGE
{
PSTR
ModuleName
;
HANDLE
hFile
;
PUCHAR
MappedAddress
;
PIMAGE_NT_HEADERS
FileHeader
;
PIMAGE_SECTION_HEADER
LastRvaSection
;
ULONG
NumberOfSections
;
PIMAGE_SECTION_HEADER
Sections
;
ULONG
Characteristics
;
BOOLEAN
fSystemImage
;
BOOLEAN
fDOSImage
;
BOOLEAN
fReadOnly
;
UCHAR
Version
;
LIST_ENTRY
Links
;
ULONG
SizeOfImage
;
}
LOADED_IMAGE
,
*
PLOADED_IMAGE
;
typedef
struct
_WIN_CERTIFICATE
{
...
...
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