By writing a portable WIn32 app I want to make sure that all the proper settings are done.
I googled for it and found the compiler IMAGE_FILE_NET_RUN_FROM_SWAP
switch.
I tried to include it in my dpr
file just like this:
{$SetPEFlags IMAGE_FILE_NET_RUN_FROM_SWAP} // THIS ONE!
{$R *.dres}
{$R *.res}
Anyway Delphi XE7 says
[dcc32 Error] Project1.dpr(330): E2003 Undeclared identifier: 'IMAGE_FILE_NET_RUN_FROM_SWAP'
Anyway by reading Embarcaero wiki it seems the name is fine.
Any suggestion?
Just include
Winapi.Windows
in your uses clause (this is whereIMAGE_FILE_NET_RUN_FROM_SWAP
is declared):