From 325856dad9250cb127e99d8a8952ede38c5d8142 Mon Sep 17 00:00:00 2001 From: "KJK::Hyperion" Date: Tue, 4 Feb 2003 01:13:26 +0000 Subject: [PATCH] Small fix to tchar.h svn path=/trunk/; revision=4114 --- reactos/include/tchar.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/reactos/include/tchar.h b/reactos/include/tchar.h index 68c45fd2889..44909924326 100644 --- a/reactos/include/tchar.h +++ b/reactos/include/tchar.h @@ -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 /*