From c01cec79d95b443ecdc447004402b938b0376cf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Sat, 10 Jul 2004 21:23:18 +0000 Subject: [PATCH] Roll back __USE_W32API test, add _tsplitpath definition svn path=/trunk/; revision=10069 --- reactos/include/tchar.h | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/reactos/include/tchar.h b/reactos/include/tchar.h index 0ac89e0cff1..5974117f4e5 100644 --- a/reactos/include/tchar.h +++ b/reactos/include/tchar.h @@ -29,21 +29,15 @@ * DISCLAIMED. This includes but is not limited to warranties of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * $Author: gvg $ - * $Date: 2004/07/07 22:29:37 $ + * $Date: 2004/07/10 21:23:18 $ * */ #ifndef _ROS_TCHAR_H_ #define _ROS_TCHAR_H_ -#ifdef __USE_W32API - -#include_next - -#else /* Not __USE_W32API */ - #include /* @@ -155,6 +149,7 @@ typedef wchar_t TCHAR; #define _totlower towlower #define _ttoi _wtoi #define _tcsftime wcsftime +#define _tsplitpath _wsplitpath #else /* Not _UNICODE */ @@ -260,9 +255,8 @@ typedef char TCHAR; #define _totlower tolower #define _ttoi atoi #define _tcsftime strftime +#define _tsplitpath _splitpath #endif /* Not _UNICODE */ #endif /* Not _TCHAR_H_ */ - -#endif /* Not __USE_W32API */