How can I enable my 32-bit Delphi application to use 4gb of memory on 64-bit windows (via Wow64.exe)?

后端 未结 4 1806
情话喂你
情话喂你 2020-12-10 04:00

According to this MSDN page:

WOW64 enables 32-bit applications to take advantage of the 64-bit kernel. Therefore, 32-bit applications can use a

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-10 04:43

    See this CodeCentral article: Using more than 3 GB memory in a 32 bit Delphi program.

    In modern Delphi versions just add compiler directive to the dpr: {$SetPEFlags IMAGE_FILE_LARGE_ADDRESS_AWARE}

提交回复
热议问题