Commit 28715ce3 authored by Richard Pospesel's avatar Richard Pospesel Committed by Alexandre Julliard

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

parent fd79a285
......@@ -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)
......
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