default.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  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. #ifndef _DEFAULT
  16. #define _DEFAULT
  17. #if defined(__WIN32__) || defined(_WIN32) || 
  18.     defined(__CYGWIN__) || defined(__MINGW32__)
  19. #   include "tkWinDefault.h"
  20. #else
  21. #   if defined(MAC_OSX_TK)
  22. # include "tkMacOSXDefault.h"
  23. #   elif defined(MAC_TCL)
  24. # include "tkMacDefault.h"
  25. #   else
  26. # include "tkUnixDefault.h"
  27. #   endif
  28. #endif
  29. #endif /* _DEFAULT */