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:
Eric Pouech 2021-10-06 10:01:48 +02:00 committed by Alexandre Julliard
parent f3107eb095
commit 507a3ef304
1 changed files with 6 additions and 0 deletions

View File

@ -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: