前端之家收集整理的这篇文章主要介绍了
inno-setup – 如何通过脚本检测64位平台,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有用于检测64平台的
代码,例如
if X86 then ...
if X64 then ...
是。
使用
if IsWin64 then
// Do sth
else
// Do sth else
还有一个Is64BitInstallMode函数。实际上,32位安装程序可以在64位操作系统上运行。因此,Is64BitInstallMode意味着IsWin64,但IsWin64并不意味着Is64BitInstallMode。
原文链接:https://www.f2er.com/delphi/103462.html