diff options
author | hobbs <hobbs> | 2003-04-18 20:17:33 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2003-04-18 20:17:33 (GMT) |
commit | 5f318bb2a6eff62e04021e5d2c49f82cbc24c6c3 (patch) | |
tree | 10887376d763e5d0810775e1b4390815482c3a49 /win/tclWinInt.h | |
parent | 229573d81bd4d08e619a3f30e653d27cfd880803 (diff) | |
download | tcl-5f318bb2a6eff62e04021e5d2c49f82cbc24c6c3.zip tcl-5f318bb2a6eff62e04021e5d2c49f82cbc24c6c3.tar.gz tcl-5f318bb2a6eff62e04021e5d2c49f82cbc24c6c3.tar.bz2 |
* win/tclWinInt.h (VER_PLATFORM_WIN32_CE): conditionally define.
* win/tclWinInit.c: recognize Windows CE as a Win platform.
This just recognizes CE - full support will come later.
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 c2fe5ae..d953c5b 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.21 2003/04/11 16:00:17 vincentdarley Exp $ + * RCS: @(#) $Id: tclWinInt.h,v 1.22 2003/04/18 20:17:45 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 |