if X86 then ... if X64 then ...
使用
if IsWin64 then // Do sth else // Do sth else
还有一个Is64BitInstallMode函数。实际上,32位安装程序可以在64位操作系统上运行。因此,Is64BitInstallMode意味着IsWin64,但IsWin64并不意味着Is64BitInstallMode。