OSDN Git Service

touched all tk files to ease next import
[pf3gnuchains/pf3gnuchains4x.git] / tk / generic / tkPort.h
1 /*
2  * tkPort.h --
3  *
4  *      This header file handles porting issues that occur because of
5  *      differences between systems.  It reads in platform specific
6  *      portability files.
7  *
8  * Copyright (c) 1995 Sun Microsystems, Inc.
9  *
10  * See the file "license.terms" for information on usage and redistribution
11  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
12  *
13  * RCS: @(#) $Id$
14  */
15
16 #ifndef _TKPORT
17 #define _TKPORT
18
19 #ifndef _TK
20 #include "tk.h"
21 #endif
22 #ifndef _TCL
23 #include "tcl.h"
24 #endif
25
26 #if defined(__WIN32__) || defined(_WIN32)
27 #   include "tkWinPort.h"
28 #else
29 #   if defined(MAC_TCL)
30 #       include "tkMacPort.h"
31 #   else
32 #       include "../unix/tkUnixPort.h"
33 #   endif
34 #endif
35
36 #endif /* _TKPORT */
37