You've already forked multithread
mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2025-12-25 23:37:08 +02:00
18 lines
416 B
ObjectPascal
18 lines
416 B
ObjectPascal
program ExExceptions;
|
|
|
|
uses
|
|
Forms,
|
|
ExceptionsFormUnit in 'ExceptionsFormUnit.pas' {ExceptionsForm},
|
|
MTUtils in '..\CommonUtils\MTUtils.pas',
|
|
MTLogger in '..\CommonUtils\MTLogger.pas',
|
|
TimeIntervals in '..\CommonUtils\TimeIntervals.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TExceptionsForm, ExceptionsForm);
|
|
Application.Run;
|
|
end.
|