tclmacosa.r
来自「linux系统下的音频通信」· R 代码 · 共 42 行
R
42 行
/* * tkMacOSA.r -- * * This file creates resources used by the AppleScript package. * * Copyright (c) 1997 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: @(#) tclMacOSA.r 1.6 97/11/20 18:40:02 */#include <Types.r>#include <SysTypes.r>/* * The folowing include and defines help construct * the version string for Tcl. */#define SCRIPT_MAJOR_VERSION 1 /* Major number */#define SCRIPT_MINOR_VERSION 0 /* Minor number */#define SCRIPT_RELEASE_SERIAL 2 /* Really minor number! */#define RELEASE_LEVEL alpha /* alpha, beta, or final */#define SCRIPT_VERSION "1.0"#define SCRIPT_PATCH_LEVEL "1.0a2"#define FINAL 0 /* Change to 1 if final version. */#if FINAL# define MINOR_VERSION (SCRIPT_MINOR_VERSION * 16) + SCRIPT_RELEASE_SERIAL#else# define MINOR_VERSION SCRIPT_MINOR_VERSION * 16#endif#define RELEASE_CODE 0x00resource 'vers' (1) { SCRIPT_MAJOR_VERSION, MINOR_VERSION, RELEASE_LEVEL, 0x00, verUS, SCRIPT_PATCH_LEVEL, SCRIPT_PATCH_LEVEL ", by Jim Ingham & Ray Johnson
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?