1
0
mirror of https://github.com/loginov-dmitry/multithread.git synced 2025-12-25 15:36:56 +02:00
Files
multithread/ExNotUseThreads/ExNotUseThreadsLaz.lpr
2024-10-13 22:05:53 +03:00

25 lines
405 B
ObjectPascal

program ExNotUseThreadsLaz;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
{$IFDEF HASAMIGA}
athreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, NotUseThreadsUnit, SplashFormUnit;
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.