-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathproject1.lpr
33 lines (28 loc) · 857 Bytes
/
project1.lpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
program project1;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
{$IFDEF HASAMIGA}
athreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, printer4lazarus, unit1, dlg_colors, dlg_params, dlg_resize, dlg_about,
dlg_info, dlg_formats
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Title:='Lazzy Image Viewer';
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TColorsDlg, ColorsDlg);
Application.CreateForm(TParamsDlg, ParamsDlg);
Application.CreateForm(TResizeDlg, ResizeDlg);
Application.CreateForm(TAboutDlg, AboutDlg);
Application.CreateForm(TInfoDlg, InfoDlg);
Application.CreateForm(TFormatsDlg, FormatsDlg);
Application.Run;
end.