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
67c67703
Commit
67c67703
authored
Mar 13, 2023
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 13, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Print static lib EC symbols.
parent
5ddeae6a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
lib.c
tools/winedump/lib.c
+14
-0
No files found.
tools/winedump/lib.c
View file @
67c67703
...
...
@@ -231,6 +231,20 @@ void lib_dump(void)
printf
(
"
\n
"
);
}
}
else
if
(
!
strncmp
((
const
char
*
)
iamh
->
Name
,
"/<ECSYMBOLS>/ "
,
sizeof
(
iamh
->
Name
)))
{
unsigned
int
i
,
*
count
=
(
unsigned
int
*
)
ioh
;
unsigned
short
*
offsets
=
(
unsigned
short
*
)(
count
+
1
);
const
char
*
name
=
(
const
char
*
)(
offsets
+
*
count
);
printf
(
"%u EC symbols
\n
"
,
*
count
);
for
(
i
=
0
;
i
<
*
count
;
i
++
)
{
printf
(
"%8x %s
\n
"
,
offsets
[
i
],
name
);
name
+=
strlen
(
name
)
+
1
;
}
printf
(
"
\n
"
);
}
else
if
(
!
strncmp
((
const
char
*
)
iamh
->
Name
,
IMAGE_ARCHIVE_LONGNAMES_MEMBER
,
sizeof
(
iamh
->
Name
)))
{
long_names
=
PRD
(
cur_file_pos
,
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