home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _7e1df38af72051b8d1be15c327b7bc18 < prev    next >
Encoding:
Text File  |  2004-06-01  |  906 b   |  37 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) 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.  * RCS: @(#) $Id: default.h,v 1.4 2002/08/31 06:12:19 das Exp $
  14.  */
  15.  
  16. #ifndef _DEFAULT
  17. #define _DEFAULT
  18.  
  19. #if defined(__WIN32__) || defined(_WIN32) || \
  20.     defined(__CYGWIN__) || defined(__MINGW32__)
  21. #   include "tkWinDefault.h"
  22. #else
  23. #   if defined(MAC_OSX_TK)
  24. #    include "tkMacOSXDefault.h"
  25. #   elif defined(MAC_TCL)
  26. #    include "tkMacDefault.h"
  27. #   else
  28. #      ifdef __PM__
  29. #         include "tkOS2Default.h"
  30. #      else
  31. #         include "tkUnixDefault.h"
  32. #      endif
  33. #   endif
  34. #endif
  35.  
  36. #endif /* _DEFAULT */
  37.