diff options
author | nijtmans <nijtmans> | 2010-11-04 21:48:23 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-11-04 21:48:23 (GMT) |
commit | 259ada8fb281493b125e0b1560f2747fa91209bf (patch) | |
tree | eca4cf58389348cf58a44d588d60ff77e45cbcba /win/tclAppInit.c | |
parent | ebb0221fdd2b89c2af2d5ee05d235debb5f0bb72 (diff) | |
download | tcl-259ada8fb281493b125e0b1560f2747fa91209bf.zip tcl-259ada8fb281493b125e0b1560f2747fa91209bf.tar.gz tcl-259ada8fb281493b125e0b1560f2747fa91209bf.tar.bz2 |
[FRQ 491789]: "setargv() doesn't support a unicode cmdline" implemented for Tcl on MSVC++
Diffstat (limited to 'win/tclAppInit.c')
-rw-r--r-- | win/tclAppInit.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c index 48962c0..d92109c 100644 --- a/win/tclAppInit.c +++ b/win/tclAppInit.c @@ -12,14 +12,14 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclAppInit.c,v 1.33 2010/09/23 21:40:45 nijtmans Exp $ + * RCS: @(#) $Id: tclAppInit.c,v 1.34 2010/11/04 21:48:23 nijtmans Exp $ */ -/* TODO: This file does not compile in UNICODE mode. - * See [Freq 2965056]: Windows build with -DUNICODE - */ -#undef UNICODE -#undef _UNICODE +#ifndef _MSC_VER +/* On mingw and cygwin this doesn't work yet */ +# undef UNICODE +# undef _UNICODE +#endif #include "tcl.h" #define WIN32_LEAN_AND_MEAN |