diff options
author | nijtmans <nijtmans> | 2010-04-20 08:17:20 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-04-20 08:17:20 (GMT) |
commit | 64c4b08a44ece02ac3c52d893e73c98b5e8f6cc5 (patch) | |
tree | b14b56efeb6e96f005aa0454f988f6b043fc40ab /win/tkWinPort.h | |
parent | f76376d447ad977082d1744f9e90040047b5d08e (diff) | |
download | tk-64c4b08a44ece02ac3c52d893e73c98b5e8f6cc5.zip tk-64c4b08a44ece02ac3c52d893e73c98b5e8f6cc5.tar.gz tk-64c4b08a44ece02ac3c52d893e73c98b5e8f6cc5.tar.bz2 |
Make sure that tkWinPort.h is always included
before tcl.h, otherwise the fallback for TCHAR
might go off before the inclusion of <tchar.h>
Diffstat (limited to 'win/tkWinPort.h')
-rw-r--r-- | win/tkWinPort.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/win/tkWinPort.h b/win/tkWinPort.h index f9a9021..4146914 100644 --- a/win/tkWinPort.h +++ b/win/tkWinPort.h @@ -10,18 +10,12 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinPort.h,v 1.15 2010/04/13 13:46:01 nijtmans Exp $ + * RCS: @(#) $Id: tkWinPort.h,v 1.16 2010/04/20 08:17:33 nijtmans Exp $ */ #ifndef _WINPORT #define _WINPORT -#include <X11/Xlib.h> -#include <X11/cursorfont.h> -#include <X11/keysym.h> -#include <X11/Xatom.h> -#include <X11/Xutil.h> - /* *--------------------------------------------------------------------------- * The following sets of #includes and #ifdefs are required to get Tcl to @@ -69,6 +63,12 @@ # endif #endif +#include <X11/Xlib.h> +#include <X11/cursorfont.h> +#include <X11/keysym.h> +#include <X11/Xatom.h> +#include <X11/Xutil.h> + #ifdef __CYGWIN__ # ifndef _vsnprintf # define _vsnprintf vsnprintf |