⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 itclmactclcode.r

📁 linux 下的源代码分析阅读器 red hat公司新版
💻 R
字号:
/* *  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -