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
a2f98478
Commit
a2f98478
authored
Dec 28, 2023
by
Eric Pouech
Committed by
Alexandre Julliard
Jan 02, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Better align fields in EXPORT table.
Signed-off-by:
Eric Pouech
<
epouech@codeweavers.com
>
parent
24bc422c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
pe.c
tools/winedump/pe.c
+4
-4
No files found.
tools/winedump/pe.c
View file @
a2f98478
...
...
@@ -697,9 +697,9 @@ static void dump_dir_exported_functions(void)
printf
(
" Ordinal base: %u
\n
"
,
(
UINT
)
dir
->
Base
);
printf
(
" # of functions: %u
\n
"
,
(
UINT
)
dir
->
NumberOfFunctions
);
printf
(
" # of Names: %u
\n
"
,
(
UINT
)
dir
->
NumberOfNames
);
printf
(
"
Addresses of functions:
%08X
\n
"
,
(
UINT
)
dir
->
AddressOfFunctions
);
printf
(
"
Addresses of name ordinals:
%08X
\n
"
,
(
UINT
)
dir
->
AddressOfNameOrdinals
);
printf
(
"
Addresses of names:
%08X
\n
"
,
(
UINT
)
dir
->
AddressOfNames
);
printf
(
"
Functions RVA:
%08X
\n
"
,
(
UINT
)
dir
->
AddressOfFunctions
);
printf
(
"
Ordinals RVA:
%08X
\n
"
,
(
UINT
)
dir
->
AddressOfNameOrdinals
);
printf
(
"
Names RVA:
%08X
\n
"
,
(
UINT
)
dir
->
AddressOfNames
);
printf
(
"
\n
"
);
printf
(
" Entry Pt Ordn Name
\n
"
);
...
...
@@ -716,7 +716,7 @@ static void dump_dir_exported_functions(void)
for
(
i
=
0
;
i
<
dir
->
NumberOfFunctions
;
i
++
)
{
if
(
!
pFunc
[
i
])
continue
;
printf
(
" %08X %5u "
,
pFunc
[
i
],
(
UINT
)
dir
->
Base
+
i
);
printf
(
" %08X %5u
"
,
pFunc
[
i
],
(
UINT
)
dir
->
Base
+
i
);
if
(
funcs
[
i
])
printf
(
"%s"
,
get_symbol_str
((
const
char
*
)
RVA
(
funcs
[
i
],
sizeof
(
DWORD
))));
else
...
...
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