-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathVT.dpr
71 lines (65 loc) · 2.03 KB
/
VT.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
64
65
66
67
68
69
70
71
{
This is part of Vortex Tracker II project
(c)2000-2009 S.V.Bulba
Author: Sergey Bulba, vorobey@mail.khstu.ru
Support page: http://bulba.untergrund.net/
Version 2.0 and later
(c)2017-2019 Ivan Pirog, ivan.pirog@gmail.com
}
program VT;
uses
//FastMM4,
Forms,
Dialogs,
Windows,
Main in 'main.pas' {MainForm},
Childwin in 'CHILDWIN.pas' {MDIChild},
About in 'about.pas' {AboutBox},
trfuncs in 'trfuncs.pas',
AY in 'AY.pas',
WaveOutAPI in 'WaveOutAPI.pas',
options in 'options.pas' {Form1},
TrkMng in 'TrkMng.pas' {TrMng},
GlbTrn in 'GlbTrn.pas' {GlbTrans},
ExportZX in 'ExportZX.pas' {ExpDlg},
FXMImport in 'FXMImport.pas' {FXMParams},
selectts in 'selectts.pas' {TSSel},
TglSams in 'TglSams.pas' {ToglSams},
HotKeys in 'HotKeys.pas',
ColorThemes in 'ColorThemes.pas',
ExportWav in 'ExportWav.pas' {Export},
ExportWavOpts in 'ExportWavOpts.pas' {ExportOptions},
InstrumentsPack in 'InstrumentsPack.pas',
ntfs in 'ntfs.pas',
ayumi in 'ayumi.pas',
UnloopDlg in 'UnloopDlg.pas' {UnloopDlg},
TrackInf in 'TrackInf.pas' {TrackInfoForm},
Logger in 'Logger.pas',
PatternPacker in 'PatternPacker.pas';
{$R *.RES}
{$R SNDH\SNDH.RES}
{$R ZXAYHOBETA\ZX.RES}
{$R Fonts\MonoFonts.RES}
{$R Samples\samples.RES}
{$R Ornaments\Ornaments.RES}
{$R Demosongs\Demosongs.RES}
{$R Icons\Icons.RES}
begin
Application.Initialize;
Application.Title := 'Vortex Tracker';
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TTrMng, TrMng);
Application.CreateForm(TGlbTrans, GlbTrans);
Application.CreateForm(TExpDlg, ExpDlg);
Application.CreateForm(TFXMParams, FXMParams);
Application.CreateForm(TTSSel, TSSel);
Application.CreateForm(TToglSams, ToglSams);
Application.CreateForm(TExport, Export);
Application.CreateForm(TExportOptions, ExportOptions);
Application.CreateForm(TUnloopDlg, UnloopDialog);
Application.CreateForm(TTrackInfoForm, TrackInfoForm);
MainForm.CheckCommandLine;
Application.Run;
end.