Mega Code Archive
Categories
/
Delphi
/
Multimedia
How to check if a soundcard is installed
Title: How to check if a soundcard is installed uses MMSystem; function SoundCardAvailable: Boolean; begin Result := WaveOutGetNumDevs 0; end;