forked from VE3NEA/MorseRunner
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathMorseRunner.dpr
64 lines (60 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
program MorseRunner;
uses
Forms,
Main in 'Main.pas' {MainForm},
Contest in 'Contest.pas',
DualExchContest in 'DualExchContest.pas',
RndFunc in 'RndFunc.pas',
Ini in 'Ini.pas',
Station in 'Station.pas',
MorseKey in 'VCL\MorseKey.pas',
FarnsKeyer in 'VCL\FarnsKeyer.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',
pcre in 'PerlRegEx\pcre.pas',
PerlRegEx in 'PerlRegEx\PerlRegEx.pas',
DXCC in 'DXCC.pas',
ArrlFd in 'ArrlFd.pas',
ArrlSS in 'ArrlSS.pas',
NaQp in 'NaQp.pas',
CWOPS in 'CWOPS.pas',
CqWW in 'CqWW.pas',
CqWpx in 'CqWpx.pas',
ArrlDx in 'ArrlDx.pas',
CWSST in 'CWSST.pas',
ALLJA in 'ALLJA.pas',
ACAG in 'ACAG.pas',
IaruHf in 'IaruHf.pas',
ExchFields in 'ExchFields.pas',
SerNRGen in 'SerNRGen.pas',
Lexer in 'Util\Lexer.pas',
ArrlSections in 'Util\ArrlSections.pas',
SSExchParser in 'Util\SSExchParser.pas';
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'Morse Runner';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.