You've already forked multithread
mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2025-12-26 15:46:46 +02:00
25 lines
415 B
ObjectPascal
25 lines
415 B
ObjectPascal
program ExExceptionsLaz;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}
|
|
cthreads,
|
|
{$ENDIF}
|
|
{$IFDEF HASAMIGA}
|
|
athreads,
|
|
{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, ExceptionsFormUnit, MTLogger;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource:=True;
|
|
Application.Scaled:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TExceptionsForm, ExceptionsForm);
|
|
Application.Run;
|
|
end.
|
|
|