program textos; {$mode delphi}{$H+} uses {$IFDEF UNIX}cthreads,{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, UFormMain, UCalculator, UApi, UKernel, UApp, UBootLoader, UShell, UTextBuffer; {$R *.res} begin RequireDerivedFormResource := True; Application.Scaled := True; Application.Initialize; Application.CreateForm(TFormMain, FormMain); Application.Run; end.