Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
6d06d3b9
Commit
6d06d3b9
authored
Nov 11, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics.
parent
fd5e811c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
pe.c
tools/winedump/pe.c
+2
-2
No files found.
tools/winedump/pe.c
View file @
6d06d3b9
...
@@ -273,7 +273,7 @@ static void dump_sections(void* addr, unsigned num_sect)
...
@@ -273,7 +273,7 @@ static void dump_sections(void* addr, unsigned num_sect)
printf
(
"Section Table
\n
"
);
printf
(
"Section Table
\n
"
);
for
(
i
=
0
;
i
<
num_sect
;
i
++
,
sectHead
++
)
for
(
i
=
0
;
i
<
num_sect
;
i
++
,
sectHead
++
)
{
{
printf
(
" %02d %-8s VirtSize: %-8lu VirtAddr: %-8lu 0x%08lx
\n
"
,
printf
(
" %02d %-8
.8
s VirtSize: %-8lu VirtAddr: %-8lu 0x%08lx
\n
"
,
i
+
1
,
sectHead
->
Name
,
sectHead
->
Misc
.
VirtualSize
,
sectHead
->
VirtualAddress
,
i
+
1
,
sectHead
->
Name
,
sectHead
->
Misc
.
VirtualSize
,
sectHead
->
VirtualAddress
,
sectHead
->
VirtualAddress
);
sectHead
->
VirtualAddress
);
printf
(
" raw data offs: %-8lu raw data size: %-8lu
\n
"
,
printf
(
" raw data offs: %-8lu raw data size: %-8lu
\n
"
,
...
@@ -282,7 +282,7 @@ static void dump_sections(void* addr, unsigned num_sect)
...
@@ -282,7 +282,7 @@ static void dump_sections(void* addr, unsigned num_sect)
sectHead
->
PointerToRelocations
,
sectHead
->
NumberOfRelocations
);
sectHead
->
PointerToRelocations
,
sectHead
->
NumberOfRelocations
);
printf
(
" line # offs: %-8lu line #'s: %-8u
\n
"
,
printf
(
" line # offs: %-8lu line #'s: %-8u
\n
"
,
sectHead
->
PointerToLinenumbers
,
sectHead
->
NumberOfLinenumbers
);
sectHead
->
PointerToLinenumbers
,
sectHead
->
NumberOfLinenumbers
);
printf
(
" characteristics: 0x
$
%08lx
\n
"
,
sectHead
->
Characteristics
);
printf
(
" characteristics: 0x%08lx
\n
"
,
sectHead
->
Characteristics
);
printf
(
" "
);
printf
(
" "
);
#define X(b,s) if (sectHead->Characteristics & b) printf(s " ")
#define X(b,s) if (sectHead->Characteristics & b) printf(s " ")
/* #define IMAGE_SCN_TYPE_REG 0x00000000 - Reserved */
/* #define IMAGE_SCN_TYPE_REG 0x00000000 - Reserved */
...
...
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