DspPlaySound
Plays a waveform (sound). Wave form sound files *.WAV are provided with Windows and by third-party developers, or you can record them yourself to play long (and complex) sound sequences.
This function searches the [Sounds] section of the WIN.INI file for an entry with the specified name, and plays the associated waveform. If the name does not match an entry in the WIN.INI file, a waveform filename is assumed. The function will then search the following directories for the waveform file (directories are listed in search order):
If the file is not in one of the aforementioned directories, you need to include the full path to the sound file. If the file doesn’t exist in one of the above directories or at a location specified with a full path, the sound will not be played.
Syntax
DspPlaySound(sSoundname, nMode)
sSoundname:
The waveform to be played. Predefined sounds (in the WIN.INI file) are:
nMode:
Not used. Needs to be 0 (zero).
Return Value
TRUE if successful, otherwise FALSE (if an error is detected).
Related Functions
Example
DspPlaySound("C:\WINNT\MEDIA\Notify.wav",0);
DspPlaySound("SystemStart",0);
See Also