API call for Playing a sound
This API call is used to play a .wav file. Hope you enjoy the code. Peace!
API Declarations
This code is all API
Rate API call for Playing a sound
(3(3 Vote))
To use this API paste the following code into a module:
Public Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long
Then to call the API type:
Variable = sndPlaySound (Location, 1)
So for example to play a .wav file located at C:\Sounds\sound.wav type:
Variable = sndPlaySound ("C:\Sounds\sound.wav, 1)
Thats it!
API call for Playing a sound Comments
No comments yet — be the first to post one!
Post a Comment