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
b0a7c55c
Commit
b0a7c55c
authored
Apr 30, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
May 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Added support for latest versions of Codeview (VC70).
parent
1185c512
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
mscvpdb.h
include/wine/mscvpdb.h
+2
-1
pdb.c
tools/winedump/pdb.c
+4
-1
No files found.
include/wine/mscvpdb.h
View file @
b0a7c55c
...
...
@@ -1810,7 +1810,8 @@ typedef struct _PDB_SYMBOLS
DWORD
unknown
;
DWORD
hash1_file
;
DWORD
hash2_file
;
DWORD
gsym_file
;
WORD
gsym_file
;
WORD
unknown1
;
DWORD
module_size
;
DWORD
offset_size
;
DWORD
hash_size
;
...
...
tools/winedump/pdb.c
View file @
b0a7c55c
...
...
@@ -170,6 +170,7 @@ static void pdb_dump_symbols(struct pdb_reader* reader)
case
0
:
/* VC 4.0 */
case
19960307
:
/* VC 5.0 */
case
19970606
:
/* VC 6.0 */
case
19990903
:
/* VC 7.0 */
break
;
default:
printf
(
"-Unknown symbol info version %d
\n
"
,
symbols
->
version
);
...
...
@@ -180,7 +181,8 @@ static void pdb_dump_symbols(struct pdb_reader* reader)
"
\t
unknown: %08x
\n
"
"
\t
hash1_file: %08x
\n
"
"
\t
hash2_file: %08x
\n
"
"
\t
gsym_file: %08x
\n
"
"
\t
gsym_file: %04x
\n
"
"
\t
unknown1: %04x
\n
"
"
\t
module_size: %08x
\n
"
"
\t
offset_size: %08x
\n
"
"
\t
hash_size: %08x
\n
"
...
...
@@ -192,6 +194,7 @@ static void pdb_dump_symbols(struct pdb_reader* reader)
symbols
->
hash1_file
,
symbols
->
hash2_file
,
symbols
->
gsym_file
,
symbols
->
unknown1
,
symbols
->
module_size
,
symbols
->
offset_size
,
symbols
->
hash_size
,
...
...
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