如何访问 FastMM4 的 RegisterExpectMemoryLeak?



我正在使用Delphi的fastMM内存管理器,当我尝试使用完整的调试模式时,我失败了。

在编译时,我得到以下错误:
FastMMFastMM4.pas(6872) Error: Undeclared identifier: 'RegisterExpectedMemoryLeak'
FastMMFastMM4.pas(6948) Error: Undeclared identifier: 'UnregisterExpectedMemoryLeak'
FastMMFastMM4.pas(9269)
import_test.dpr(24) Fatal: Could not compile used unit 'FastMMFastMM4.pas'

.inc文件告诉加载完整的调试dll。我已经复制了FastMM_FullDebugMode.dll文件无处不在。看起来我应该在我的项目中加入一些东西。

我可能错过了一些非常明显的东西。

Delphi版本为7.

打开包含文件FastMM4Options.inc中的EnableMemoryLeakReporting指令,将其更改为:

{.$define EnableMemoryLeakReporting}

:

{$define EnableMemoryLeakReporting}

还要阅读该文件中的注释并理解各种选项,根据需要打开/关闭它们

相关内容

  • 没有找到相关文章

最新更新