blob: 4237e98398adfe8e5bdbec2116a5d99e60f10c0e (
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.
|