Mercurial > repos > rliterman > csp2
comparison CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/include/tkPort.h @ 69:33d812a61356
planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author | jpayne |
---|---|
date | Tue, 18 Mar 2025 17:55:14 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
67:0e9998148a16 | 69:33d812a61356 |
---|---|
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 | |
14 #ifndef _TKPORT | |
15 #define _TKPORT | |
16 | |
17 #if defined(_WIN32) | |
18 # include "tkWinPort.h" | |
19 #endif | |
20 #ifndef _TK | |
21 # include "tk.h" | |
22 #endif | |
23 #if !defined(_WIN32) | |
24 # if defined(MAC_OSX_TK) | |
25 # include "tkMacOSXPort.h" | |
26 # else | |
27 # include "tkUnixPort.h" | |
28 # endif | |
29 #endif | |
30 | |
31 #endif /* _TKPORT */ |