1
0
mirror of https://github.com/loginov-dmitry/multithread.git synced 2025-12-26 15:46:46 +02:00
Files
multithread/ExExceptions/ExExceptionsLaz.lpr
2024-10-13 22:10:36 +03:00

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.