basetyps.h: Don't typedef wchar_t for C++.

This matches corecrt.h.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Kevin Puetz 2020-02-13 11:35:36 +01:00 committed by Alexandre Julliard
parent 355fdfb5f6
commit 858f9ac0d5
1 changed files with 2 additions and 0 deletions

View File

@ -83,7 +83,9 @@ typedef unsigned long error_status_t;
#endif
#ifndef _WCHAR_T_DEFINED
#ifndef __cplusplus
typedef unsigned short wchar_t;
#endif
#define _WCHAR_T_DEFINED
#endif