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
53e89174
Commit
53e89174
authored
Dec 07, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Dec 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Make output of dump_data fit into 80 columns.
parent
04681470
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
pdb.c
tools/winedump/pdb.c
+5
-5
No files found.
tools/winedump/pdb.c
View file @
53e89174
...
...
@@ -145,7 +145,7 @@ static void pdb_exit(struct pdb_reader* reader)
size
=
pdb_get_file_size
(
reader
,
i
);
printf
(
"File --unused-- #%d (%x)
\n
"
,
i
,
size
);
dump_data
(
file
,
size
,
"
\t
"
);
dump_data
(
file
,
size
,
"
"
);
free
((
char
*
)
file
);
}
#endif
...
...
@@ -204,7 +204,7 @@ static void pdb_dump_symbols(struct pdb_reader* reader)
printf
(
"
\t
----------offsets------------
\n
"
);
src
=
(
const
BYTE
*
)((
const
char
*
)
symbols
+
sizeof
(
PDB_SYMBOLS
)
+
symbols
->
module_size
);
dump_data
(
src
,
symbols
->
offset_size
,
"
\t\t
"
);
dump_data
(
src
,
symbols
->
offset_size
,
"
"
);
}
if
(
symbols
->
srcmodule_size
)
...
...
@@ -396,13 +396,13 @@ static void pdb_dump_symbols(struct pdb_reader* reader)
if
(
symbol_size
)
codeview_dump_symbols
((
const
char
*
)
modimage
+
sizeof
(
DWORD
),
symbol_size
);
/* what's that part ??? */
if
(
0
)
dump_data
(
modimage
+
symbol_size
+
lineno_size
,
total_size
-
(
symbol_size
+
lineno_size
),
"
\t\t\t
"
);
dump_data
(
modimage
+
symbol_size
+
lineno_size
,
total_size
-
(
symbol_size
+
lineno_size
),
"
"
);
free
((
char
*
)
modimage
);
}
file_name
+=
strlen
(
file_name
)
+
1
;
file
=
(
char
*
)((
DWORD
)(
file_name
+
strlen
(
file_name
)
+
1
+
3
)
&
~
3
);
}
...
...
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