Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
att
GitHub Repository: att/ast
Path: blob/master/src/lib/libtk/generic/tkDefault.h
1810 views
1
/*
2
* default.h --
3
*
4
* This file defines the defaults for all options for all of
5
* the Tk widgets.
6
*
7
* Copyright (c) 1991-1994 The Regents of the University of California.
8
* Copyright (c) 1994 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
* SCCS: @(#) default.h 1.4 96/02/07 17:33:39
14
*/
15
16
#ifndef _TKDEFAULT
17
#define _TKDEFAULT
18
19
#if !defined(_WINIX) && (_UWIN || __CYGWIN__ || __EMX__)
20
#define _WINIX 1
21
#endif
22
#if !_WINIX && (defined(__WIN32__) || defined(_WIN32) || defined(WIN32))
23
#define WIN_TCL 1
24
#endif
25
26
#if defined(WIN_TCL)
27
# include "tkWinDefault.h"
28
#else
29
# if defined(MAC_TCL)
30
# include "tkMacDefault.h"
31
# else
32
# include "tkUnixDef.h"
33
# endif
34
#endif
35
36
#endif /* _TKDEFAULT */
37
38