23 lines
614 B
Plaintext
23 lines
614 B
Plaintext
program AppMon;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
DAppMonMain in 'DAppMonMain.pas' {DlgAppMonMain},
|
|
Define in 'Define.pas',
|
|
FProcessList in 'FProcessList.pas' {FrmProcessList: TFrame},
|
|
FInstallList in 'FInstallList.pas' {FrmInstallList: TFrame},
|
|
ThdProcessMon in 'ThdProcessMon.pas',
|
|
Tocsg.AppInfo in '..\..\Tocsg.Lib\VCL\Tocsg.AppInfo.pas',
|
|
Tocsg.Prefetch in '..\PrefetchAnal\Tocsg.Prefetch.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
|
|
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TDlgAppMonMain, DlgAppMonMain);
|
|
Application.Run;
|
|
end.
|