/*1* default.h --2*3* This file defines the defaults for all options for all of4* the Tk widgets.5*6* Copyright (c) 1991-1994 The Regents of the University of California.7* Copyright (c) 1994 Sun Microsystems, Inc.8*9* See the file "license.terms" for information on usage and redistribution10* of this file, and for a DISCLAIMER OF ALL WARRANTIES.11*12* SCCS: @(#) default.h 1.4 96/02/07 17:33:3913*/1415#ifndef _TKDEFAULT16#define _TKDEFAULT1718#if !defined(_WINIX) && (_UWIN || __CYGWIN__ || __EMX__)19#define _WINIX 120#endif21#if !_WINIX && (defined(__WIN32__) || defined(_WIN32) || defined(WIN32))22#define WIN_TCL 123#endif2425#if defined(WIN_TCL)26# include "tkWinDefault.h"27#else28# if defined(MAC_TCL)29# include "tkMacDefault.h"30# else31# include "tkUnixDef.h"32# endif33#endif3435#endif /* _TKDEFAULT */363738