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
1e141eee
Commit
1e141eee
authored
Oct 09, 2010
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 11, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Allow loading PE module with 64bit addresses.
parent
8e48cd1a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dbghelp_private.h
dlls/dbghelp/dbghelp_private.h
+1
-1
pe_module.c
dlls/dbghelp/pe_module.c
+1
-1
No files found.
dlls/dbghelp/dbghelp_private.h
View file @
1e141eee
...
...
@@ -578,7 +578,7 @@ extern BOOL path_find_symbol_file(const struct process* pcs, PCSTR full_
extern
BOOL
pe_load_nt_header
(
HANDLE
hProc
,
DWORD64
base
,
IMAGE_NT_HEADERS
*
nth
);
extern
struct
module
*
pe_load_native_module
(
struct
process
*
pcs
,
const
WCHAR
*
name
,
HANDLE
hFile
,
DWORD
base
,
DWORD
size
);
HANDLE
hFile
,
DWORD
64
base
,
DWORD
size
);
extern
struct
module
*
pe_load_builtin_module
(
struct
process
*
pcs
,
const
WCHAR
*
name
,
DWORD64
base
,
DWORD64
size
);
...
...
dlls/dbghelp/pe_module.c
View file @
1e141eee
...
...
@@ -733,7 +733,7 @@ BOOL pe_load_debug_info(const struct process* pcs, struct module* module)
*
*/
struct
module
*
pe_load_native_module
(
struct
process
*
pcs
,
const
WCHAR
*
name
,
HANDLE
hFile
,
DWORD
base
,
DWORD
size
)
HANDLE
hFile
,
DWORD
64
base
,
DWORD
size
)
{
struct
module
*
module
=
NULL
;
BOOL
opened
=
FALSE
;
...
...
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