OSDN Git Service

first commit
[sample-delphi/sample-DELPHI.git] / voice.dpr
1 program voice;
2
3 uses
4   System.StartUpCopy,
5   FMX.Forms,
6   effect in 'effect.pas',
7   selectFile in 'selectFile.pas',
8   spWav in 'spWav.pas',
9   Unit1 in 'Unit1.pas' {Form1},
10   wav in 'wav.pas';
11
12 {$R *.res}
13
14 begin
15   Application.Initialize;
16   Application.CreateForm(TForm1, Form1);
17   Application.Run;
18 end.