mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
Remove this deprecated wchar_t logic.
We needed it, when host and target headers weren't fully separated, but this greatly improved now :-) svn path=/trunk/; revision=31348
This commit is contained in:
parent
d959db2131
commit
feec3403a4
1 changed files with 1 additions and 19 deletions
|
@ -49,26 +49,8 @@ extern "C" {
|
|||
#include <basetsd.h>
|
||||
#include <guiddef.h>
|
||||
|
||||
/* wchar_t checks
|
||||
* First check if wchar_t has already been defined by any host/OS */
|
||||
#ifndef _WCHAR_T_DECLARED /* for FreeBSD 5 and later */
|
||||
#define _WCHAR_T_DECLARED
|
||||
#ifndef _WCHAR_T /* for Mac OS X */
|
||||
#define _WCHAR_T
|
||||
#ifndef _WCHAR_T_
|
||||
#define _WCHAR_T_
|
||||
#ifndef _WCHAR_T_DEFINED /* If you want to override the wchar_t setting, define this */
|
||||
#ifndef __cplusplus
|
||||
typedef unsigned short wchar_t;
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Set _WCHAR_T_DEFINED for the case that this is checked later */
|
||||
#ifndef _WCHAR_T_DEFINED
|
||||
#define _WCHAR_T_DEFINED
|
||||
typedef unsigned short wchar_t;
|
||||
#endif
|
||||
|
||||
#include <ctype.h>
|
||||
|
|
Loading…
Reference in a new issue