Commit 507a3ef3 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp: Return SymTagExe when requesting lexical parent of types in SymGetTypeInfo().

parent f3107eb0
......@@ -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:
......
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