widl: Use FC_CHAR rather than FC_BYTE for boolean typedef to match midl.exe output.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47041
Signed-off-by: Richard Pospesel <richard@torproject.org>
Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit 28715ce34e)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
oldstable
Richard Pospesel 2019-06-05 18:34:14 -07:00 committed by Michael Stefaniuc
parent e42d4b5634
commit c1f2e4ae76
1 changed files with 1 additions and 1 deletions

View File

@ -1208,7 +1208,7 @@ void init_types(void)
decl_builtin_basic("double", TYPE_BASIC_DOUBLE);
decl_builtin_basic("error_status_t", TYPE_BASIC_ERROR_STATUS_T);
decl_builtin_basic("handle_t", TYPE_BASIC_HANDLE);
decl_builtin_alias("boolean", type_new_basic(TYPE_BASIC_BYTE));
decl_builtin_alias("boolean", type_new_basic(TYPE_BASIC_CHAR));
}
static str_list_t *append_str(str_list_t *list, char *str)