FetFrumos
FetFrumos

Reputation: 5964

How to use FastMM in delphi expert(dll)

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?

Upvotes: 3

Views: 994

Answers (2)

splash
splash

Reputation: 13327

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

Upvotes: 2

Mihai Limbășan
Mihai Limbășan

Reputation: 67836

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.

Upvotes: 4

Related Questions