Can 64bit Delphi desktop application be certified for Windows 8.1

佐手、 提交于 2019-12-03 15:29:53
David Heffernan

The only requirement that is hard to meet with Delphi is /SafeSEH. But that does not apply to 64 bit apps.

The Windows x64 ABI uses a completely different exception model from that used by x86.

The x86 exception model is stack based. The /SafeSEH flag applies to stack based exceptions. The x64 ABI uses table based exceptions. And /SafeSEH is simply not applicable. Which explains the 32 bit only text that you quoted.

So it's easy to meet 3.1 and 3.5. Don't do those things. And 3.3 and 3.4 are just PE flags that you can set using {$SetPEFlags}. Then 3.2 does not apply and you are home.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!