Commit 67c67703 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

winedump: Print static lib EC symbols.

parent 5ddeae6a
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment