mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2024-11-24 08:52:15 +02:00
25 lines
382 B
ObjectPascal
25 lines
382 B
ObjectPascal
program Ex12ProjLaz;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}
|
|
cthreads,
|
|
{$ENDIF}
|
|
{$IFDEF HASAMIGA}
|
|
athreads,
|
|
{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, Ex12Unit, MTUtils;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource:=True;
|
|
Application.Scaled:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|