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

📄 ccunzip.exec

📁 完整的解压zip文件的源码。包含密码功能
💻 EXEC
字号:
/* CCUNZIP  EXEC   Compile unzip 5.4 for VM/CMS                           *//*                 Author: George Petrov, 11 Apr 1995 (VMCOMPIL EXEC) *//* Modified for IBM C V3R1 by Ian E. Gorman, 2 Nov 1998   Facilities for compiling and testing were provided by      OmniMark Technologies Corporation, Ottawa, Canada*/Address CommandSignal On Error/* Allow longnames, compile re-entrant code.   global.c and vmmvs.c require EXTENDED features */CCopts = 'LONGNAME RENT LANGLVL(EXTENDED) NOEXECOPS'/* UNZIP options -- VM_CMS, REENTRANT */CCopts = CCopts 'DEFINE(VM_CMS,REENTRANT)'/* Link the load module to run in more or less than 16MB memory */LINKopts = 'AMODE ANY RMODE ANY RLDSAVE''GLOBAL TXTLIB  SCEELKED CMSLIB''GLOBAL LOADLIB SCEERUN'/* produce the TEXT (object) files */linklist=''modname='UNZIP'Say 'Building' modname 'MODULE...'Call Compile 'UNZIP'Call Compile 'CRC32'Call Compile 'CRCTAB'Call Compile 'CRYPT'Call Compile 'ENVARGS'Call Compile 'EXPLODE'Call Compile 'EXTRACT'Call Compile 'FILEIO'Call Compile 'GLOBALS'Call Compile 'INFLATE'Call Compile 'PROCESS'Call Compile 'LIST'Call Compile 'MATCH'Call Compile 'TTYIO'Call Compile 'UNREDUCE'Call Compile 'UNSHRINK'Call Compile 'ZIPINFO'Call Compile 'VMMVS'Say 'Linking...''EXEC CMOD' linklist '(MODNAME' modname LINKoptsSay modname 'built successfully.'/* Make ZIPINFO from UNZIP */modname = 'ZIPINFO''COPYFILE UNZIP MODULE A ZIPINFO MODULE A (OLDDATE REPLACE'Say modname 'built successfully.'Say 'Done.'Exit rcerror:Say 'Error' rc 'during compilation!'Say 'Error in line' sigl':'Say '   'Sourceline(sigl)Exit rcCompile:  Procedure Expose CCopts LINKopts linklistParse arg filename filetype filemode .If filetype='' Then filetype='C'linklist = linklist filenameSay 'Compiling' filename filetype filemode '...''EXEC CC' filename filetype filemode '('CCoptsReturn rc

⌨️ 快捷键说明

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