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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * tclMacInt.h --
  3.  *
  4.  * Declarations of Macintosh specific shared variables and procedures.
  5.  *
  6.  * Copyright (c) 1996-1998 Sun Microsystems, Inc.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * RCS: @(#) $Id: tclMacInt.h,v 1.7 2001/11/23 01:27:36 das Exp $
  12.  */
  13. #ifndef _TCLMACINT
  14. #define _TCLMACINT
  15. #ifndef _TCLINT
  16. #include "tclInt.h"
  17. #endif
  18. #ifndef _TCLPORT
  19. #include "tclPort.h"
  20. #endif
  21. #include <Events.h>
  22. #include <Files.h>
  23. /*
  24.  * Defines to control stack behavior.
  25.  *
  26.  * The Tcl8.2 regexp code is highly recursive for patterns with many
  27.  * subexpressions.  So we have to increase the stack space to accomodate.
  28.  * 512 K is good enough for ordinary work, but you need 768 to pass the Tcl
  29.  * regexp testsuite.
  30.  *
  31.  * For the PPC, you need to set the stack space in the Project file.
  32.  *
  33.  */
  34. #ifdef TCL_TEST
  35. # define TCL_MAC_68K_STACK_GROWTH (768*1024)
  36. #else
  37. # define TCL_MAC_68K_STACK_GROWTH (512*1024)
  38. #endif
  39. #define TCL_MAC_STACK_THRESHOLD 16384
  40. #ifdef BUILD_tcl
  41. # undef TCL_STORAGE_CLASS
  42. # define TCL_STORAGE_CLASS DLLEXPORT
  43. #endif
  44. /*
  45.  * This flag is passed to TclMacRegisterResourceFork
  46.  * by a file (usually a library) whose resource fork
  47.  * should not be closed by the resource command.
  48.  */
  49.  
  50. #define TCL_RESOURCE_DONT_CLOSE  2
  51. /*
  52.  * Typedefs used by Macintosh parts of Tcl.
  53.  */
  54. /*
  55.  * Prototypes of Mac only internal functions.
  56.  */
  57. EXTERN char * TclMacGetFontEncoding _ANSI_ARGS_((int fontId));
  58. EXTERN int TclMacHaveThreads _ANSI_ARGS_((void));
  59. EXTERN long TclpGetGMTOffset _ANSI_ARGS_((void));
  60. # undef TCL_STORAGE_CLASS
  61. # define TCL_STORAGE_CLASS DLLIMPORT
  62. #include "tclIntPlatDecls.h"
  63.     
  64. #endif /* _TCLMACINT */