Jump to content

Play recorded sounds: Difference between revisions

Added Delphi example
(Apple II's BASICs can't handle PCM audio)
(Added Delphi example)
Line 74:
}
}</lang>
 
=={{header|Delphi}}==
<lang Delphi>program PlayRecordedSounds;
 
{$APPTYPE CONSOLE}
 
uses MMSystem;
 
begin
sndPlaySound('SoundFile.wav', SND_NODEFAULT OR SND_ASYNC);
end.</lang>
 
=={{header|PicoLisp}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.