home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
sound
/
soundup
/
sample.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1990-08-21
|
202 b
|
11 lines
Program TestSnd;
Uses Crt,Sounds;
Var Snd1,Snd2:Noise;
I:Byte;
Begin
I:=LoadSound('I.SND',Snd1);
I:=LoadSound('PAGE.SND',Snd2);
KeepSound(Snd2);
PlaySound(Snd1);
End.