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