Commit 94abe076 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp: Report once FIXME of unsupported requests in SymGetTypeInfo().

parent 2716e204
......@@ -970,17 +970,15 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
#undef X
case TI_GET_ADDRESSOFFSET:
case TI_GET_SYMINDEX:
case TI_GET_THISADJUST:
case TI_GET_VIRTUALBASECLASS:
case TI_GET_VIRTUALBASEPOINTEROFFSET:
case TI_GET_VIRTUALTABLESHAPEID:
case TI_IS_EQUIV_TO:
FIXME("Unsupported GetInfo request (%u)\n", req);
return FALSE;
default:
FIXME("Unknown GetInfo request (%u)\n", req);
{
static DWORD64 once;
if (!(once & ((DWORD64)1 << req)))
{
FIXME("Unsupported GetInfo request (%u)\n", req);
once |= (DWORD64)1 << req;
}
}
return FALSE;
}
......
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