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, ...@@ -763,7 +763,13 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
break; break;
case SymTagUDT: case SymTagUDT:
case SymTagEnum: case SymTagEnum:
case SymTagFunctionType:
case SymTagFunctionArgType: case SymTagFunctionArgType:
case SymTagPointerType:
case SymTagArrayType:
case SymTagBaseType:
case SymTagTypedef:
case SymTagBaseClass:
X(DWORD) = symt_ptr2index(module, &module->top->symt); X(DWORD) = symt_ptr2index(module, &module->top->symt);
break; break;
default: 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