SNDPAUSED: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
No edit summary |
No edit summary |
||
Line 13: | Line 13: | ||
{{PageExamples}} | {{PageExamples}} | ||
{{CodeStart}} | {{CodeStart}} | ||
{{Cl|PRINT}} {{Cl|_SNDPAUSED}}(h&) | {{Cl|PRINT}} {{Cl|_SNDPAUSED}}(h&) | ||
{{CodeEnd}} | {{CodeEnd}} | ||
{{PageSeeAlso}} | {{PageSeeAlso}} | ||
* [[_SNDPAUSE]], [[_SNDPLAY]], | * [[_SNDPAUSE]], [[_SNDPLAY]], | ||
* [[_SNDSTOP]] | * [[_SNDSTOP]] | ||
{{PageNavigation}} | {{PageNavigation}} |
Revision as of 02:42, 23 January 2023
The _SNDPAUSED function checks if a sound is paused. Uses a handle parameter passed from _SNDOPEN.
Syntax
- isPaused%% = _SNDPAUSED(handle&)
Description
- Returns true (-1) if the sound is paused. False (0) if not paused.
Examples
PRINT _SNDPAUSED(h&) |
See also