1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 09:10:37 +00:00
qb64/internal/help/_SNDPLAYING.txt
2019-04-14 22:15:33 -03:00

26 lines
587 B
Plaintext

{{DISPLAYTITLE:_SNDPLAYING}}
The [[_SNDPLAYING]] function returns whether a sound is being played. Uses a handle from the [[_SNDOPEN]] or [[_SNDCOPY]] functions.
{{PageSyntax}}
:{{Parameter|isPlaying%}} = [[_SNDPLAYING]]({{Parameter|handle&}})
{{PageDescription}}
*Returns false (0) if a sound is not playing or true (-1) if it is.
*If a sound is paused, [[_SNDPLAYING]] returns 0.
{{PageExamples}}
{{CodeStart}} '' ''
{{Cl|PRINT}} {{Cl|_SNDPLAYING}}(h&) '' ''
{{CodeEnd}}
{{PageSeeAlso}}
* [[_SNDPLAY]], [[_SNDPAUSE]], [[_SNDSTOP]]
* [[_SNDPAUSED]]
{{PageNavigation}}