Hallo,
warum bekomme ich keine Meldung von FastMM4 bei folgendem Programm:
Delphi-Quellcode:
program xxx;
uses
FastMM4, classes,
Forms,
xxUnit in 'xxUnit.pas'
{$R *.RES}
var
test: TStrings;
begin
ReportMemoryLeaksOnShutdown:= True;
test:= TStringList.Create;
Application.Initialize;
Application.CreateForm(Txx, xx);
Application.Run;
end.
Ich habe FastMM4 runtergeladen und als erte
Unit eingebunden. Jetzt sollte doch test angemeckert werden oder?