forked from n2ic/MorseRunner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
MorseRunner.lpr
42 lines (37 loc) · 1002 Bytes
/
MorseRunner.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
34
35
36
37
38
39
40
41
program MorseRunner;
{$MODE Delphi}
uses
Forms, Interfaces,
Main in 'Main.pas' {MainForm},
Contest in 'Contest.pas',
RndFunc in 'RndFunc.pas',
Ini in 'Ini.pas',
Station in 'Station.pas',
MorseKey in 'VCL\MorseKey.pas',
StnColl in 'StnColl.pas',
DxStn in 'DxStn.pas',
MyStn in 'MyStn.pas',
CallLst in 'CallLst.pas',
QrmStn in 'QrmStn.pas',
Log in 'Log.pas',
Qsb in 'Qsb.pas',
DxOper in 'DxOper.pas',
QrnStn in 'QrnStn.pas',
ScoreDlg in 'ScoreDlg.pas' {ScoreDialog},
BaseComp in 'VCL\BaseComp.pas',
PermHint in 'VCL\PermHint.pas',
Crc32 in 'VCL\Crc32.pas',
SndTypes in 'VCL\SndTypes.pas',
MorseTbl in 'VCL\MorseTbl.pas',
QuickAvg in 'VCL\QuickAvg.pas',
MovAvg in 'VCL\MovAvg.pas',
Mixers in 'VCL\Mixers.pas',
VolumCtl in 'VCL\VolumCtl.pas';
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Morse Runner';
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TScoreDialog, ScoreDialog);
Application.Run;
end.