36 lines
843 B
ObjectPascal
36 lines
843 B
ObjectPascal
program starstreetapp;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}
|
|
cthreads,
|
|
{$ENDIF}
|
|
{$IFDEF HASAMIGA}
|
|
athreads,
|
|
{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, tachartlazaruspkg, lazcontrols, datetimectrls, Unit1, framegrafico,
|
|
frameluna, meteo_frame, graficimeteo, ImpostazioniForm, settingsutils,
|
|
info_form, VisualizzaEventiForm
|
|
{ you can add units after this };
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
|
|
RequireDerivedFormResource:=True;
|
|
Application.Scaled:=True;
|
|
{$PUSH}{$WARN 5044 OFF}
|
|
Application.MainFormOnTaskbar:=True;
|
|
{$POP}
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.CreateForm(TForm3, Form3);
|
|
Application.CreateForm(TImpostazioni, Impostazioni);
|
|
Application.CreateForm(TInformazioni, Informazioni);
|
|
Application.CreateForm(TForm2, Form2);
|
|
Application.Run;
|
|
end.
|
|
|