1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 17:55:52 +00:00
QB64-PE/internal/help/_SNDCLOSE.txt
SMcNeill 6e01fc8dce Altered string compare routines (<,<=,>,>=) so they don't give false results with CHR$(0).
Added new _STRCMP and _STRICMP commands for quick string comparisons.
Cleaned up QB64 to finish removing the QUI (quick user insert) code and folders.
Altered UCASE and LCASE routines to be faster in some situations for us.
2014-09-22 08:19:03 -04:00

28 lines
676 B
Plaintext

The {{KW|_SNDCLOSE}} statement frees and unloads an open sound using a {{KW|_SNDOPEN}} or {{KW|_SNDCOPY}} handle.
{{PageSyntax}}
:{{KW|_SNDCLOSE}} {{Parameter|handle&amp;}}
{{PageDescription}}
* If the sound is still playing, it will be freed after it finishes automatically.
* Closing a looping/paused/etc. sound will mean it is never freed until the QB64 program terminates.
* Non-SYNC sounds must be closed before another Non-SYNC sound can be opened.
* When your QB64 program terminates, all sounds are automatically freed
{{PageExamples}}
{{CodeStart}}
{{Cl|_SNDCLOSE}} h&amp;
{{CodeEnd}}
{{PageSeeAlso}}
*{{KW|_SNDSTOP}}, {{KW|_SNDPAUSE}}
{{PageNavigation}}