1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 19:50:22 +00:00
QB64-PE/internal/help/_SNDCLOSE.txt
2016-03-18 08:36:04 -03:00

26 lines
700 B
Plaintext

{{DISPLAYTITLE:_SNDCLOSE}}
The [[_SNDCLOSE]] statement frees and unloads an open sound using a [[_SNDOPEN]] or [[_SNDCOPY]] handle.
{{PageSyntax}}
::: [[_SNDCLOSE]] {{Parameter|handle&}}
{{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
''Examples:''
{{CodeStart}} '' ''
{{Cl|_SNDCLOSE}} h& '' ''
{{CodeEnd}}
{{PageSeeAlso}}
*{{KW|_SNDSTOP}}, {{KW|_SNDPAUSE}}
{{PageNavigation}}