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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * tkPort.h --
  3.  *
  4.  * This header file handles porting issues that occur because of
  5.  * differences between systems.  It reads in platform specific
  6.  * portability files.
  7.  *
  8.  * Copyright (c) 1995 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: tkPort.h,v 1.3.2.1 2004/01/01 00:34:56 das Exp $
  14.  */
  15. #ifndef _TKPORT
  16. #define _TKPORT
  17. #ifndef _TK
  18. #include "tk.h"
  19. #endif
  20. #ifndef _TCL
  21. #include "tcl.h"
  22. #endif
  23. #if defined(__WIN32__) || defined(_WIN32)
  24. #   include "tkWinPort.h"
  25. #else
  26. #   if defined(MAC_TCL)
  27. # include "tkMacPort.h"
  28. #   elif defined(MAC_OSX_TK)
  29. # include "tkMacOSXPort.h"
  30. #   else
  31. # include "../unix/tkUnixPort.h"
  32. #   endif
  33. #endif
  34. #endif /* _TKPORT */