jpayne@69: /* jpayne@69: * tkPort.h -- jpayne@69: * jpayne@69: * This header file handles porting issues that occur because of jpayne@69: * differences between systems. It reads in platform specific jpayne@69: * portability files. jpayne@69: * jpayne@69: * Copyright (c) 1995 Sun Microsystems, Inc. jpayne@69: * jpayne@69: * See the file "license.terms" for information on usage and redistribution jpayne@69: * of this file, and for a DISCLAIMER OF ALL WARRANTIES. jpayne@69: */ jpayne@69: jpayne@69: #ifndef _TKPORT jpayne@69: #define _TKPORT jpayne@69: jpayne@69: #if defined(_WIN32) jpayne@69: # include "tkWinPort.h" jpayne@69: #endif jpayne@69: #ifndef _TK jpayne@69: # include "tk.h" jpayne@69: #endif jpayne@69: #if !defined(_WIN32) jpayne@69: # if defined(MAC_OSX_TK) jpayne@69: # include "tkMacOSXPort.h" jpayne@69: # else jpayne@69: # include "tkUnixPort.h" jpayne@69: # endif jpayne@69: #endif jpayne@69: jpayne@69: #endif /* _TKPORT */