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

widl: Use "string" for HSTRING in signatures for generated UUID.

Fixes the UUID of IVectorView<HSTRING*> to match MIDL for instance. Signed-off-by: 's avatarRémi Bernon <rbernon@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 1f2614c6
......@@ -197,6 +197,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, "HSTRING")) n += strappend(buf, len, pos + n, "string");
else n += append_type_signature(buf, len, pos + n, type->details.alias.aliasee.type);
return n;
case TYPE_STRUCT:
......
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