You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
761 B
37 lines
761 B
2 years ago
|
/*
|
||
|
* tkPort.h --
|
||
|
*
|
||
|
* This header file handles porting issues that occur because of
|
||
|
* differences between systems. It reads in platform specific
|
||
|
* portability files.
|
||
|
*
|
||
|
* Copyright (c) 1995 Sun Microsystems, Inc.
|
||
|
*
|
||
|
* See the file "license.terms" for information on usage and redistribution
|
||
|
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||
|
*
|
||
|
* RCS: @(#) $Id: tkPort.h,v 1.1.22.1 2007/02/06 18:51:59 barre Exp $
|
||
|
*/
|
||
|
|
||
|
#ifndef _TKPORT
|
||
|
#define _TKPORT
|
||
|
|
||
|
#ifndef _TK
|
||
|
#include "tk.h"
|
||
|
#endif
|
||
|
#ifndef _TCL
|
||
|
#include "tcl.h"
|
||
|
#endif
|
||
|
|
||
|
#if defined(__WIN32__) || defined(_WIN32)
|
||
|
# include "tkWinPort.h"
|
||
|
#else
|
||
|
# if defined(MAC_TCL)
|
||
|
# include "tkMacPort.h"
|
||
|
# else
|
||
|
# include "tkUnixPort.h"
|
||
|
# endif
|
||
|
#endif
|
||
|
|
||
|
#endif /* _TKPORT */
|