How to use FastMM in delphi expert(dll)

982 views Asked by At

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

2

There are 2 answers

2
Mihai Limbășan On

I emphatically advise you to use in any DLL running in the IDE's address space the very same memory manager used by the respective version of the IDE. Madness lies the other way.

1
splash On

I suspect that you can't use FastMM in a Delphi 5 IDE expert, because it already uses ShareMem (BORLNDMM.DLL).