Robert Shearman : widl: Use WCHAR instead of wchar_t.
Module: wine Branch: refs/heads/master Commit: 6066106bb0aeb71d2e79390260743a86e2a04426 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=6066106bb0aeb71d2e793902... Author: Robert Shearman <rob(a)codeweavers.com> Date: Mon Dec 12 12:10:26 2005 +0100 widl: Use WCHAR instead of wchar_t. Output IDL wchar_t types as WCHAR to avoid conflicts with the generally incompatible Unix wchar_t. --- tools/widl/header.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/widl/header.c b/tools/widl/header.c index 95db8c9..be279ad 100644 --- a/tools/widl/header.c +++ b/tools/widl/header.c @@ -219,7 +219,7 @@ void write_type(FILE *h, type_t *t, var_ 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:
participants (1)
-
Alexandre Julliard