Commit f2ef7cf4 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedump: Dump S_SSEARCH_V1 symbols.

parent fbb9d5f7
...@@ -1162,6 +1162,11 @@ int codeview_dump_symbols(const void* root, unsigned long size) ...@@ -1162,6 +1162,11 @@ int codeview_dump_symbols(const void* root, unsigned long size)
/* simply skip it */ /* simply skip it */
break; break;
case S_SSEARCH_V1:
printf("\tSSearch V1: (%04x:%08x)\n",
sym->ssearch_v1.segment, sym->ssearch_v1.offset);
break;
default: default:
printf(">>> Unsupported symbol-id %x sz=%d\n", sym->generic.id, sym->generic.len + 2); printf(">>> Unsupported symbol-id %x sz=%d\n", sym->generic.id, sym->generic.len + 2);
dump_data((const void*)sym, sym->generic.len + 2, " "); dump_data((const void*)sym, sym->generic.len + 2, " ");
......
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