Commit a375ff9e authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

widl: Use "g16" for GUID parameterized type signature.

parent ef43048c
......@@ -198,6 +198,7 @@ static size_t append_type_signature(char **buf, size_t *len, size_t pos, type_t
return n;
case TYPE_ALIAS:
if (!strcmp(type->name, "boolean")) n += strappend(buf, len, pos + n, "b1");
else if (!strcmp(type->name, "GUID")) n += strappend(buf, len, pos + n, "g16");
else if (!strcmp(type->name, "HSTRING")) n += strappend(buf, len, pos + n, "string");
else n += append_type_signature(buf, len, pos + n, type->details.alias.aliasee.type);
return n;
......
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