How to use FastMM in delphi expert (dll)

I made a delphi expert (dll - delphi 5). I want to check my expert for a memory leak. How to use FastMM for expert dll? Is it possible to use fastmm (for my dll) instead of the standard memory manager?

+3
source share
2 answers

I strongly advise you to use in any DLL running in the IDE address space the very memory manager used by the corresponding version of the IDE. Madness is another way.

+4
source

I suspect that you cannot use FastMM in the Delphi 5 IDE Expert Advisor because it already uses ShareMem (BORLNDMM.DLL).

+2
source

Source: https://habr.com/ru/post/1794357/