aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/midi/demo/Project1.dpr
blob: 7aa4e512cda0ca65c74ae0dc923e6f16bc6649e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
program Project1;

uses
  Forms,
  MidiTest in 'MidiTest.pas' {MidiPlayer};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TMidiPlayer, MidiPlayer);
  Application.Run;
end.