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

Fixes the UUID of IVectorView<HSTRING*> to match MIDL for instance.

Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Rémi Bernon 2022-01-25 10:13:38 +01:00 committed by Alexandre Julliard
parent 1f2614c60b
commit 1af44e2670
1 changed files with 1 additions and 0 deletions

View File

@ -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: