dbghelp: Return SymTagExe when requesting lexical parent of types in SymGetTypeInfo().
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f3107eb095
commit
507a3ef304
|
@ -763,7 +763,13 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
|
|||
break;
|
||||
case SymTagUDT:
|
||||
case SymTagEnum:
|
||||
case SymTagFunctionType:
|
||||
case SymTagFunctionArgType:
|
||||
case SymTagPointerType:
|
||||
case SymTagArrayType:
|
||||
case SymTagBaseType:
|
||||
case SymTagTypedef:
|
||||
case SymTagBaseClass:
|
||||
X(DWORD) = symt_ptr2index(module, &module->top->symt);
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue