itkmaclibrary.r

来自「这是一个Linux下的集成开发环境」· R 代码 · 共 54 行

R
54
字号
/* * tkMacLibrary.r -- * *	This file creates resources for use in most Tk applications. *	This is designed to be an example of using the Tcl/Tk  *	libraries in a Macintosh Application. * * 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: @(#) tkMacLibrary.r 1.5 96/10/03 17:54:21 */#include <Types.r>#include <SysTypes.r>#include <AEUserTermTypes.r>/* * The folowing include and defines help construct * the version string for Tcl. */#define RESOURCE_INCLUDED#include <tcl.h>#include <tk.h>#include "itcl.h"#include "itk.h"#if (TK_RELEASE_LEVEL == 0)#   define RELEASE_LEVEL alpha#elif (TK_RELEASE_LEVEL == 1)#   define RELEASE_LEVEL beta#elif (TK_RELEASE_LEVEL == 2)#   define RELEASE_LEVEL final#endif#if (TK_RELEASE_LEVEL == 2)#   define MINOR_VERSION (ITCL_MINOR_VERSION * 16) + TK_RELEASE_SERIAL#else#   define MINOR_VERSION ITCL_MINOR_VERSION * 16#endif#define RELEASE_CODE 0x00#define ITCL_LIBRARY_RESOURCES 3000#define ITK_LIBRARY_RESOURCES 3500resource 'vers' (1) {	ITCL_MAJOR_VERSION, MINOR_VERSION,	RELEASE_LEVEL, 0x00, verUS,	ITK_PATCH_LEVEL,	ITK_PATCH_LEVEL ", by Michael McLennan 

⌨️ 快捷键说明

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