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:
parent
dd6aa8cf2d
commit
6066106bb0
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue