-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathShollu3.dpr
38 lines (31 loc) · 971 Bytes
/
Shollu3.dpr
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
36
37
38
{ KOL MCK } // Do not remove this line!
program Shollu3;
{$R *.res}
{.$WARNINGS OFF}
uses
KOL,
HeapMM,
Unit1 in 'Unit1.pas' {Form1},
Shollu in 'Shollu.pas',
UColConv in 'UColConv.pas',
UMainPage in 'UMainPage.pas' {FMainPage},
USettingpas in 'USettingpas.pas' {FSetting},
UArea in 'UArea.pas' {FArea},
UMessage in 'UMessage.pas' {FMessage},
USchedule in 'USchedule.pas' {FSchedule},
UAbout in 'UAbout.pas' {FAbout},
UCities in 'UCities.pas' {FCities},
UDialog in 'UDialog.pas' {FDialog},
UBar in 'UBar.pas' {FBar},
UTask in 'UTask.pas' {FTask},
UConvert in 'UConvert.pas' {FConvert},
UDropZone in 'UDropZone.pas' {FDropZone};
begin // PROGRAM START HERE -- Please do not remove this comment
{$IF Defined(KOL_MCK)} {$I Shollu3_0.inc} {$ELSE}
{$IFDEF KOL_MCK} {$I Shollu3_0.inc} {$ELSE}
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
{$ENDIF}
{$IFEND}
end.