home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tcltk805.zip / tcl805s.zip / tk8.0.5 / os2 / default.h next >
C/C++ Source or Header  |  2000-01-01  |  843b  |  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-2000 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.  * * RCS: @(#) $Id: default.h,v 1.2 1998/09/14 18:23:02 stanton Exp $
  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__)
  27. #         include "tkOS2Default.h"
  28. #      else
  29. #         include "tkUnixDefault.h"
  30. #      endif
  31. #   endif
  32. #endif
  33.  
  34. #endif /* _DEFAULT */
  35.