program PrefetchAnal; uses Vcl.Forms, DPrefetchAnalMain in 'DPrefetchAnalMain.pas' {DlgPrefetchAnalMain}; {$R *.res} begin ReportMemoryLeaksOnShutdown := DebugHook <> 0; Application.Initialize; Application.MainFormOnTaskbar := True; Application.CreateForm(TDlgPrefetchAnalMain, DlgPrefetchAnalMain); Application.Run; end.