Commit dd57b45a authored by Eric Kohl's avatar Eric Kohl Committed by Alexandre Julliard

widl: The 'string' attribute can also be used with unsigned characters.

parent 4d25edc2
......@@ -577,7 +577,7 @@ static size_t write_string_tfs(FILE *file, const attr_t *attrs,
int has_size = size_is && (size_is->type != EXPR_VOID);
size_t start_offset = *typestring_offset;
if ((type->type != RPC_FC_CHAR) && (type->type != RPC_FC_WCHAR))
if ((type->type != RPC_FC_BYTE) && (type->type != RPC_FC_CHAR) && (type->type != RPC_FC_WCHAR))
{
error("write_string_tfs: Unimplemented for type 0x%x of name: %s\n", type->type, name);
return start_offset;
......
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