| 12345678910111213141516171819202122 |
- program FloatLCL;
- {$mode objfpc}{$H+}
- uses
- {$IFDEF UNIX}
- cthreads,
- {$ENDIF}
- Interfaces, // this includes the LCL widgetset
- Fresnel, // this includes the Fresnel-LCL widgetset
- Forms, MainUnit;
- {$R *.res}
- begin
- RequireDerivedFormResource:=True;
- Application.Scaled:=True;
- Application.Initialize;
- Application.CreateForm(TMainForm, MainForm);
- Application.Run;
- end.
|