Commit bb52ed35 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp/msc: Support LF_INDEX* in enumeration type definition.

parent f8d3c2b2
......@@ -907,6 +907,18 @@ static BOOL codeview_add_type_enum_field_list(struct codeview_type_parse* ctp,
break;
}
case LF_INDEX_V1:
if (!codeview_add_type_enum_field_list(ctp, symt, type->index_v1.ref))
return FALSE;
ptr += 2 + 2;
break;
case LF_INDEX_V2:
if (!codeview_add_type_enum_field_list(ctp, symt, type->index_v2.ref))
return FALSE;
ptr += 2 + 2 + 4;
break;
default:
FIXME("Unsupported type %04x in ENUM field list\n", type->generic.id);
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