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
485280c6
Commit
485280c6
authored
Dec 12, 2009
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Enforce 64bit modules address on 64bit platforms.
parent
b4da46eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
debugger.h
programs/winedbg/debugger.h
+1
-1
types.c
programs/winedbg/types.c
+1
-1
No files found.
programs/winedbg/debugger.h
View file @
485280c6
...
...
@@ -94,7 +94,7 @@ enum dbg_internal_types
struct
dbg_type
{
unsigned
long
id
;
DWORD
module
;
DWORD
_PTR
module
;
};
struct
dbg_lvalue
/* structure to hold left-values... */
...
...
programs/winedbg/types.c
View file @
485280c6
...
...
@@ -561,7 +561,7 @@ static BOOL CALLBACK print_types_cb(PSYMBOL_INFO sym, ULONG size, void* ctx)
struct
dbg_type
type
;
type
.
module
=
sym
->
ModBase
;
type
.
id
=
sym
->
TypeIndex
;
dbg_printf
(
"Mod: %08x ID: %08lx
\n
"
,
type
.
module
,
type
.
id
);
dbg_printf
(
"Mod: %08
l
x ID: %08lx
\n
"
,
type
.
module
,
type
.
id
);
types_print_type
(
&
type
,
TRUE
);
dbg_printf
(
"
\n
"
);
return
TRUE
;
...
...
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