-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOpenLadder.lpr
More file actions
36 lines (31 loc) · 1.02 KB
/
Copy pathOpenLadder.lpr
File metadata and controls
36 lines (31 loc) · 1.02 KB
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
34
35
program OpenLadder;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
{$IFDEF HASAMIGA}
athreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, Main, doubleClickBit, unitNewProjectForm, doubleclickcompare,
doubleclickstore, doubleclickcomment, doubleclickmath, simulatorUnit,
doubleclicktimer, doubleclickflash, unitAboutForm;
{$R *.res}
begin
RequireDerivedFormResource:=true;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TbitForm, bitForm);
Application.CreateForm(TnewProjectForm, newProjectForm);
Application.CreateForm(TCompareForm, CompareForm);
Application.CreateForm(TstoreForm, storeForm);
Application.CreateForm(TcommentForm, commentForm);
Application.CreateForm(TMathForm, mathForm);
Application.CreateForm(TmathForm, mathForm);
Application.CreateForm(TtimerForm, timerForm);
Application.CreateForm(TflashForm, flashForm);
Application.CreateForm(TaboutForm, aboutForm);
Application.Run;
end.