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

📄 arjdata.c

📁 arj source code
💻 C
字号:
/* * $Id: arjdata.c,v 1.5 2003/10/16 10:32:46 andrew_belov Exp $ * --------------------------------------------------------------------------- * User-modifyable resource information. It must be kept binding-independent. * */#include <time.h>#include "arj.h"/* Tags */#define TAG_CHAR                 '@'#define TAG_SPECIAL_BEGIN        '{'#define TAG_SPECIAL_END          '}'/* Alignments */#define ALIGN_NONE                 0#define ALIGN_RIGHT                1#define ALIGN_CENTER               2/* Resource list hash array. The syntax is: <tag> <substitution> */static char *resources[][2]={ /* Version */ {  "VERSION",  #ifdef TILED   "2.78"  #else   "3.10"  #endif }, /* ARJ Software, Inc. counterparts (note: always 4 chars, spaces allowed!) */ {  "COUNTERPARTS", "2.7x"                /* The docs mention DOS */ }, /* Short product description */ {  "PRODUCT",  "ARJ"  #if TARGET==OS2   "/2"  #endif  #ifndef TILED   #if TARGET==OS2    "-"   #endif   "32"  #endif }, /* Platform */ {  "PLATFORM",  #if TARGET==DOS   "DOS"  #elif TARGET==OS2   "OS/2"  #elif TARGET==WIN32   "Win32"  #elif TARGET==UNIX   #if defined(linux)    "Linux"   #elif defined(__FreeBSD__)    "FreeBSD"   #elif defined(SUNOS)    "SunOS"   #elif defined(__QNXNTO__)    "QNX"   #else    "UNIX"   #endif  #endif }, /* Platform -- legal filename format */ {  "PLATFORM_FN",  #if TARGET==OS2   "OS2",  #elif TARGET==UNIX   "UNIX",  #else   "@PLATFORM",  #endif }, /* Platform specification for FILE_ID.DIZ (appended to description) */ {  "PLATFORM_APPENDIX",  #if defined(linux)   "/Linux",  #elif defined(__FreeBSD__)   "/FreeBSD",  #elif defined(SUNOS)   "/SunOS",  #elif defined(__QNXNTO__)   "/QNX",  #elif TARGET==WIN32   "/Win32",  #else   "",  #endif }, /* Long product description */ {  "PRODUCT_LONG",  #if TARGET==DOS   #if LOCALE==LANG_en    "ARJ version @VERSION Open-Source"   #elif LOCALE==LANG_ru    "ARJ, ⅴ噌

⌨️ 快捷键说明

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