widl: Use WCHAR instead of wchar_t.

Output IDL wchar_t types as WCHAR to avoid conflicts with the
generally incompatible Unix wchar_t.
This commit is contained in:
Robert Shearman 2005-12-12 12:10:26 +01:00 committed by Alexandre Julliard
parent dd6aa8cf2d
commit 6066106bb0
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ void write_type(FILE *h, type_t *t, var_t *v, const char *n)
else fprintf(h, "char");
break;
case RPC_FC_WCHAR:
fprintf(h, "wchar_t");
fprintf(h, "WCHAR");
break;
case RPC_FC_USHORT:
case RPC_FC_SHORT: