1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-07 20:20:25 +00:00
qb64/internal/help/_SNDPLAYING.md

532 B

The _SNDPLAYING function returns whether a sound is being played. Uses a handle from the _SNDOPEN or _SNDCOPY functions.

Syntax

isPlaying% = _SNDPLAYING(handle&)

Description

  • Returns false (0) if a sound is not playing or true (-1) if it is.
  • If a sound is paused, _SNDPLAYING returns 0.

Example(s)


PRINT _SNDPLAYING(h&) 

See Also