forked from VE3NEA/MorseRunner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MorseRunner.dpr
44 lines (40 loc) · 1.12 KB
/
MorseRunner.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
39
40
41
42
43
44
program MorseRunner;
uses
Forms,
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',
SndCustm in 'VCL\SndCustm.pas',
SndTypes in 'VCL\SndTypes.pas',
SndOut in 'VCL\SndOut.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',
VolmSldr in 'VCL\VolmSldr.pas',
WavFile in 'VCL\WavFile.pas';
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'Morse Runner';
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TScoreDialog, ScoreDialog);
Application.Run;
end.