19 lines
378 B
Plaintext
19 lines
378 B
Plaintext
program NetMon;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
DNetMonMain in 'DNetMonMain.pas' {DlgNetMonMain},
|
|
ManagerNic in 'ManagerNic.pas',
|
|
ThdNicMonitor in 'ThdNicMonitor.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
|
|
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TDlgNetMonMain, DlgNetMonMain);
|
|
Application.Run;
|
|
end.
|