forked from mrkaban/Lpro
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLegalProgram.lpr
29 lines (25 loc) · 901 Bytes
/
LegalProgram.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
program LegalProgram;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, printer4lazarus, Main, About, PoiskVBaze, RuchPoisk, PodborZameni,
installed, help, settings, ProsmotrReestra;
{$R *.res}
begin
Application.Title:='Lpro';
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TfMian, fMian);
Application.CreateForm(TfAbout, fAbout);
Application.CreateForm(TfPoiskVBaze, fPoiskVBaze);
Application.CreateForm(TfRuchPoisk, fRuchPoisk);
Application.CreateForm(TfPodborZameni, fPodborZameni);
Application.CreateForm(TfInstalled, fInstalled);
Application.CreateForm(TfHelp, fHelp);
Application.CreateForm(TfSettings, fSettings);
Application.CreateForm(TfProsmotrReestra, fProsmotrReestra);
Application.Run;
end.