tkPort.hGo to the documentation of this file.00001 /* 00002 * tkPort.h -- 00003 * 00004 * This header file handles porting issues that occur because of 00005 * differences between systems. It reads in platform specific 00006 * portability files. 00007 * 00008 * Copyright (c) 1995 Sun Microsystems, Inc. 00009 * 00010 * See the file "license.terms" for information on usage and redistribution 00011 * of this file, and for a DISCLAIMER OF ALL WARRANTIES. 00012 * 00013 * RCS: @(#) $Id: tkPort.h,v 1.1 2001/08/18 00:48:57 fmk Exp $ 00014 */ 00015 00016 #ifndef _TKPORT 00017 #define _TKPORT 00018 00019 #ifndef _TK 00020 #include "tk.h" 00021 #endif 00022 #ifndef _TCL 00023 #include "tcl.h" 00024 #endif 00025 00026 #if defined(__WIN32__) || defined(_WIN32) 00027 # include "tkWinPort.h" 00028 #else 00029 # if defined(MAC_TCL) 00030 # include "tkMacPort.h" 00031 # else 00032 # include "tkUnixPort.h" 00033 # endif 00034 #endif 00035 00036 #endif /* _TKPORT */ |