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

📄 itclmaclibrary.r

📁 linux 下的源代码分析阅读器 red hat公司新版
💻 R
字号:
/*  * tclMacLibrary.r -- * *	This file creates resources used by the Tcl shared library. *	Many thanks go to "Jay Lieske, Jr." <lieske@princeton.edu> who *	wrote the initial version of this file. * * Copyright (c) 1996 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * * SCCS: @(#) tclMacLibrary.r 1.3 96/09/12 17:40:07 */#include <Types.r>#include <SysTypes.r>/* * The folowing include and defines help construct * the version string for Tcl. */#define RESOURCE_INCLUDED#include "tcl.h"#include "itcl.h"#if (TCL_RELEASE_LEVEL == 0)#   define RELEASE_LEVEL alpha#elif (TCL_RELEASE_LEVEL == 1)#   define RELEASE_LEVEL beta#elif (TCL_RELEASE_LEVEL == 2)#   define RELEASE_LEVEL final#endif#if (TCL_RELEASE_LEVEL == 2)#   define MINOR_VERSION (ITCL_MINOR_VERSION * 16) + TCL_RELEASE_SERIAL#else#   define MINOR_VERSION ITCL_MINOR_VERSION * 16#endifresource 'vers' (1) {	ITCL_MAJOR_VERSION, MINOR_VERSION,	RELEASE_LEVEL, 0x00, verUS,	ITCL_PATCH_LEVEL,	ITCL_PATCH_LEVEL ", by Michael McLennan 

⌨️ 快捷键说明

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