SNDPAUSED
From QB64 Wiki
The _SNDPAUSED function checks if a sound is paused. Uses a handle parameter passed from _SNDOPEN.
- paused% = _SNDPAUSED (handle&)
Description:
- Returns -1 if the sound is paused. 0 if not paused.
- Sound files opened must have the "PAUSE" capability to use this function.
Code Examples:
PRINT _SNDPAUSED(h&)
See also: