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/tclWinInit.c | |
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/tclWinInit.c')
-rw-r--r-- | win/tclWinInit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinInit.c b/win/tclWinInit.c index 2ab64a3..e913272 100644 --- a/win/tclWinInit.c +++ b/win/tclWinInit.c @@ -7,7 +7,7 @@ * Copyright (c) 1998-1999 by Scriptics Corporation. * All rights reserved. * - * RCS: @(#) $Id: tclWinInit.c,v 1.40 2003/02/27 03:47:09 chengyemao Exp $ + * RCS: @(#) $Id: tclWinInit.c,v 1.41 2003/04/18 20:17:42 hobbs Exp $ */ #include "tclWinInt.h" @@ -68,9 +68,9 @@ typedef struct { */ -#define NUMPLATFORMS 3 +#define NUMPLATFORMS 4 static char* platforms[NUMPLATFORMS] = { - "Win32s", "Windows 95", "Windows NT" + "Win32s", "Windows 95", "Windows NT", "Windows CE" }; #define NUMPROCESSORS 9 |