itclmactclcode.r

来自「linux 下的源代码分析阅读器 red hat公司新版」· R 代码 · 共 33 行

R
33
字号
/* *  itclMacTclCode.r * *  This file includes the Itcl code that is needed to startup Tcl. *  It is to be included either in the resource fork of the shared library, or in the *  resource fork of the application for a statically bound application. * *  Jim Ingham *  Lucent Technologies 1996 * */ #include <Types.r>#include <SysTypes.r>#define ITCL_LIBRARY_RESOURCES 2500/*  * The mechanisim below loads Tcl source into the resource fork of the * application.  The example below creates a TEXT resource named * "Init" from the file "init.tcl".  This allows applications to use * Tcl to define the behavior of the application without having to * require some predetermined file structure - all needed Tcl "files" * are located within the application.  To source a file for the * resource fork the source command has been modified to support * sourcing from resources.  In the below case "source -rsrc {Init}" * will load the TEXT resource named "Init". */read 'TEXT' (ITCL_LIBRARY_RESOURCES, "itcl", purgeable,preload) "::library:itcl.tcl";

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?