SNDPAUSED - QB64 Wiki

SNDPAUSED

From QB64 Wiki

Revision as of 15:40, 28 April 2011 by Clippy (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The _SNDPAUSED function checks if a sound is paused. Uses a handle parameter passed from _SNDOPEN.


Syntax:

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:



Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page