|
sndPlaySound
The sndPlaySound function plays a waveform sound specified either by a filename or by an entry
in the registry or the WIN.INI file. This function offers a subset of the
functionality of the PlaySound function; sndPlaySound is being maintained for backward compatibility.
BOOL sndPlaySound(
LPCSTR lpszSound,
|
| UINT fuSound
|
| );
|
|
Parameters
lpszSound
A string that specifies the sound to play. This parameter can be either an
entry in the registry or in WIN.INI that identifies a system sound, or it can be
the name of a waveform-audio file. (If the function does not find the entry, the
parameter is treated as a filename.) If this parameter is NULL, any currently
playing sound is stopped.
fuSound
Flags for playing the sound. The following values are defined:
SND_ASYNC
The sound is played asynchronously and the function returns immediately after
beginning the sound. To terminate an asynchronously played sound, call sndPlaySound with lpszSoundName set to NULL.
SND_LOOP
The sound plays repeatedly until sndPlaySound is called again with the lpszSoundName parameter set to NULL. You must also specify the SND_ASYNC flag to loop
sounds.
SND_MEMORY
The parameter specified by lpszSoundName points to an image of a waveform sound in memory.
SND_NODEFAULT
If the sound cannot be found, the function returns silently without playing
the default sound.
SND_NOSTOP
If a sound is currently playing, the function immediately returns FALSE,
without playing the requested sound.
SND_SYNC
The sound is played synchronously and the function does not return until the
sound ends.
Return Values
Returns TRUE if successful or FALSE otherwise.
Remarks
If the specified sound cannot be found, sndPlaySound plays the system default sound. If there is no system default entry in the
registry or WIN.INI file, or if the default sound cannot be found, the function
makes no sound and returns FALSE.
The specified sound must fit in available physical memory and be playable by
an installed waveform-audio device driver. If sndPlaySound does not find the sound in the current directory, the function searches for
it using the standard directory-search order.
See Also
PlaySound
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|