diff options
author | hobbs <hobbs> | 2004-03-21 20:59:28 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-03-21 20:59:28 (GMT) |
commit | ccb560364793a1f26ccad8d6d538bc0469c2e230 (patch) | |
tree | 5500a9e1f0b51217aca71da958926d0fd5ef3050 /win/tclWinInt.h | |
parent | 121105e0ad2f6051d2936d793833b2c263c9b1b4 (diff) | |
download | tcl-ccb560364793a1f26ccad8d6d538bc0469c2e230.zip tcl-ccb560364793a1f26ccad8d6d538bc0469c2e230.tar.gz tcl-ccb560364793a1f26ccad8d6d538bc0469c2e230.tar.bz2 |
define WIN32_CE platform info
Diffstat (limited to 'win/tclWinInt.h')
-rw-r--r-- | win/tclWinInt.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/win/tclWinInt.h b/win/tclWinInt.h index b7299eb..ce09ce3 100644 --- a/win/tclWinInt.h +++ b/win/tclWinInt.h @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinInt.h,v 1.20.2.1 2003/04/14 15:46:01 vincentdarley Exp $ + * RCS: @(#) $Id: tclWinInt.h,v 1.20.2.2 2004/03/21 20:59:28 hobbs Exp $ */ #ifndef _TCLWININT @@ -37,11 +37,15 @@ /* * Some versions of Borland C have a define for the OSVERSIONINFO for * Win32s and for NT, but not for Windows 95. + * Define VER_PLATFORM_WIN32_CE for those without newer headers. */ #ifndef VER_PLATFORM_WIN32_WINDOWS #define VER_PLATFORM_WIN32_WINDOWS 1 #endif +#ifndef VER_PLATFORM_WIN32_CE +#define VER_PLATFORM_WIN32_CE 3 +#endif /* * The following structure keeps track of whether we are using the |