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
a1021a12
Commit
a1021a12
authored
Oct 31, 2009
by
Eric Pouech
Committed by
Alexandre Julliard
Nov 03, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Ensure all PDB fields are printed.
parent
16036dd2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
pdb.c
tools/winedump/pdb.c
+12
-2
No files found.
tools/winedump/pdb.c
View file @
a1021a12
...
...
@@ -189,7 +189,12 @@ static void pdb_dump_symbols(struct pdb_reader* reader)
"
\t
offset_size: %08x
\n
"
"
\t
hash_size: %08x
\n
"
"
\t
src_module_size %08x
\n
"
"
\t
pdbimport_size %08x
\n
"
,
"
\t
pdbimport_size %08x
\n
"
"
\t
resvd[0] %08x
\n
"
"
\t
resvd[1] %08x
\n
"
"
\t
resvd[2] %08x
\n
"
"
\t
resvd[3] %08x
\n
"
"
\t
resvd[4] %08x
\n
"
,
symbols
->
signature
,
symbols
->
version
,
symbols
->
unknown
,
...
...
@@ -201,7 +206,12 @@ static void pdb_dump_symbols(struct pdb_reader* reader)
symbols
->
offset_size
,
symbols
->
hash_size
,
symbols
->
srcmodule_size
,
symbols
->
pdbimport_size
);
symbols
->
pdbimport_size
,
symbols
->
resvd
[
0
],
symbols
->
resvd
[
1
],
symbols
->
resvd
[
2
],
symbols
->
resvd
[
3
],
symbols
->
resvd
[
4
]);
if
(
symbols
->
offset_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