最新消息:

Nsis7z是NSIS支持7z解压缩支持回调函数的插件

nsis 永恒心锁 4639浏览 0评论
/*
Nsis7z是NSIS支持7z解压缩支持回调函数的插件
Nsis7z支持lzma的固实压缩算法
*/
Name "nsis7zsample"
; The file to write
OutFile "nsis7zsample.exe"
; The default installation directory
InstallDir "C:Utils"
; Request application privileges for Windows Vista
RequestExecutionLevel user
!addplugindir "..Release"
!addplugindir "."
Function CallbackTest
 Pop $R8
 Pop $R9
 SetDetailsPrint textonly
 DetailPrint "Installing $R8 / $R9..."
 SetDetailsPrint both
FunctionEnd
; The stuff to install
Section "" ;No components page, name is not important
 ; Set output path to the installation directory.
 SetOutPath $INSTDIR
 SetCompress off
 DetailPrint "Extracting package..."
 SetDetailsPrint listonly
 File Test.7z
 SetCompress auto
; File /nonfatal /oname=$PLUGINSDIRnsis7z.pdb Releasensis7z.pdb
 SetDetailsPrint both
 ; Usual mode - set unpacking prompt using DetailPrint,
 ; plugin will animate progress bar
; DetailPrint "Installing package..."
; Nsis7z::Extract "Test.7z"
 ; Details mode - unpacking promt generated from second param, use
 ; %s to insert unpack details like "10% (5 / 10 MB)"
; Nsis7z::ExtractWithDetails "Test.7z" "Installing package %s..."
 ; Callback mode - plugin will animate progress bar, you can do
 ; anything in callback function
 GetFunctionAddress $R9 CallbackTest
 Nsis7z::ExtractWithCallback "Test.7z" $R9
 Delete "$OUTDIRTest.7z"
SectionEnd ; end the section
免责声明:根据《计算机软件保护条例》第十七条规定“为了学习和研究软件内含的设计思想和原理,通过安装、显示、传输或者存储软件等方式使用软件的,可以不经软件著作权人许可,不向其支付报酬。”您需知晓本站所有内容资源均来源于网络,仅供用户交流学习与研究使用,版权归属原版权方所有,版权争议与本站无关,用户本人下载后不能用作商业或非法用途,需在24个小时之内从您的电脑中彻底删除上述内容,否则后果均由用户承担责任;如果您访问和下载此文件,表示您同意只将此文件用于参考、学习而非其他用途,否则一切后果请您自行承担,如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。丨本站为个人博客非盈利性站点,所有软件信息均来自网络,所有资源仅供学习参考研究目的,并不贩卖软件,不存在任何商业目的及用途。丨本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权BY-NC-SA协议进行授权

转载请注明:永恒心锁-分享互联网 » Nsis7z是NSIS支持7z解压缩支持回调函数的插件

您必须 登录 才能发表评论!