tkPort.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:1k
源码类别:

3D图形编程

开发平台:

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.  * SCCS: @(#) tkPort.h 1.7 96/02/11 16:42:10
  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. #   else
  29. # include "../unix/tkUnixPort.h"
  30. #   endif
  31. #endif
  32. #endif /* _TKPORT */