mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 00:54:40 +00:00
Small fix to tchar.h
svn path=/trunk/; revision=4114
This commit is contained in:
parent
38535d7610
commit
325856dad9
1 changed files with 7 additions and 3 deletions
|
@ -29,9 +29,9 @@
|
|||
* DISCLAIMED. This includes but is not limited to warranties of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* $Revision: 1.5 $
|
||||
* $Author: robd $
|
||||
* $Date: 2003/01/01 06:19:37 $
|
||||
* $Revision: 1.6 $
|
||||
* $Author: hyperion $
|
||||
* $Date: 2003/02/04 01:13:26 $
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -154,8 +154,12 @@ typedef char TCHAR;
|
|||
/*
|
||||
* Enclose constant strings and characters in the _TEXT and _T macro.
|
||||
*/
|
||||
#ifndef _TEXT
|
||||
#define _TEXT(x) x
|
||||
#endif
|
||||
#ifndef _T
|
||||
#define _T(x) x
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue