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

dbghelp: CV's ssearch.

- added definitions for start_search symbol info - silenced warnings from this symbol
parent 4143ce5e
......@@ -1520,6 +1520,11 @@ static int codeview_snarf(const struct msc_debug_info* msc_dbg, const BYTE* root
case S_MSTOOL_V3: /* just to silence a few warnings */
break;
case S_SSEARCH_V1:
TRACE("Start search: seg=0x%x at offset 0x%08x\n",
sym->ssearch_v1.segment, sym->ssearch_v1.offset);
break;
default:
FIXME("Unsupported symbol id %x\n", sym->generic.id);
dump(sym, 2 + sym->generic.len);
......
......@@ -1112,9 +1112,17 @@ union codeview_symbol
unsigned int unknown;
char name[1];
} compile_v3;
struct
{
short int len;
short int id;
unsigned int offset;
unsigned short segment;
} ssearch_v1;
};
#define S_COMPILE_V1 0x0001
#define S_COMPILE_V1 0x0001
#define S_REGISTER_V1 0x0002
#define S_CONSTANT_V1 0x0003
#define S_UDT_V1 0x0004
......
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