diff options
author | mdejong <mdejong> | 2001-07-19 06:40:09 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-07-19 06:40:09 (GMT) |
commit | 524b0f2d00b99d18e37e281905c73ec37c565a66 (patch) | |
tree | fe7eccd416cacef313f40a0b5962129a67ea87cd /win/tclWinReg.c | |
parent | 6cc38d5ff36cfbb941affae49796516273ec66a7 (diff) | |
download | tcl-524b0f2d00b99d18e37e281905c73ec37c565a66.zip tcl-524b0f2d00b99d18e37e281905c73ec37c565a66.tar.gz tcl-524b0f2d00b99d18e37e281905c73ec37c565a66.tar.bz2 |
* generic/tclPlatDecls.h: Define TCHAR by including
windows.h instead of tchar.h since Cygwin does not
support the tchar.h header. Include CHECK_UNICODE_CALLS
logic from tclWinPort.h.
* win/tclWinPort.h: Remove CHECK_UNICODE_CALLS logic.
Remove include of windows.h since this now done it
tclPlatDecls.h.
* win/tclWinReg.c: Remove duplicate include of windows.h.
Diffstat (limited to 'win/tclWinReg.c')
-rw-r--r-- | win/tclWinReg.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/win/tclWinReg.c b/win/tclWinReg.c index b5931fc..5799f86 100644 --- a/win/tclWinReg.c +++ b/win/tclWinReg.c @@ -11,16 +11,12 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinReg.c,v 1.12 2000/06/13 20:30:24 ericm Exp $ + * RCS: @(#) $Id: tclWinReg.c,v 1.13 2001/07/19 06:40:09 mdejong Exp $ */ #include <tclPort.h> #include <stdlib.h> -#define WIN32_LEAN_AND_MEAN -#include <windows.h> -#undef WIN32_LEAN_AND_MEAN - /* * TCL_STORAGE_CLASS is set unconditionally to DLLEXPORT because the * Registry_Init declaration is in the source file itself, which is only |