Advertisement
Java_Volume1 Windows API Call/ Explanation #93833

API call for Playing a sound

This API call is used to play a .wav file. Hope you enjoy the code. Peace!

AI

Shrnutí AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Zdrojový kód
original-source
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!


Původní komentáře (3)
Obnoveno z Wayback Machine