| 123456789101112131415161718192021 |
- program LCLImager;
- {$mode objfpc}{$H+}
- uses
- Interfaces, // this includes the LCL widgetset
- Forms
- { add your units here },
- MainUnit, AboutUnit;
- {$R *.res}
- begin
- Application.Title:='LCL Imager';
- Application.Scaled:=True;
- Application.Initialize;
- Application.CreateForm(TMainForm, MainForm);
- Application.CreateForm(TAboutForm, AboutForm);
- Application.Run;
- end.
|