home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tk42r2s.zip / tk4.2 / os2 / default.h next >
C/C++ Source or Header  |  1998-01-28  |  841b  |  35 lines

  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) 1996-1998 Illya Vaes
  8.  * Copyright (c) 1994 Sun Microsystems, Inc.
  9.  * Copyright (c) 1991-1994 The Regents of the University of California.
  10.  *
  11.  * See the file "license.terms" for information on usage and redistribution
  12.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  13.  *
  14.  * SCCS: @(#) default.h 1.4 96/02/07 17:33:39
  15.  */
  16.  
  17. #ifndef _DEFAULT
  18. #define _DEFAULT
  19.  
  20. #if defined(__WIN32__) || defined(_WIN32)
  21. #   include "tkWinDefault.h"
  22. #else
  23. #   if defined(MAC_TCL)
  24. #    include "tkMacDefault.h"
  25. #   else
  26. #      if (defined(__OS2__) || defined(__EMX__))
  27. #         include "tkOS2Default.h"
  28. #      else
  29. #         include "tkUnixDefault.h"
  30. #      endif
  31. #   endif
  32. #endif
  33.  
  34. #endif /* _DEFAULT */
  35.