Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-05-18 08:30:27

0001 /*
0002  * tkPort.h --
0003  *
0004  *  This header file handles porting issues that occur because of
0005  *  differences between systems.  It reads in platform specific
0006  *  portability files.
0007  *
0008  * Copyright (c) 1995 Sun Microsystems, Inc.
0009  *
0010  * See the file "license.terms" for information on usage and redistribution
0011  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
0012  */
0013 
0014 #ifndef _TKPORT
0015 #define _TKPORT
0016 
0017 #if defined(_WIN32)
0018 #   include "tkWinPort.h"
0019 #endif
0020 #ifndef _TK
0021 #   include "tk.h"
0022 #endif
0023 #if !defined(_WIN32)
0024 #   if defined(MAC_OSX_TK)
0025 #   include "tkMacOSXPort.h"
0026 #   else
0027 #   include "tkUnixPort.h"
0028 #   endif
0029 #endif
0030 
0031 #endif /* _TKPORT */