1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-07 20:20:25 +00:00
qb64/internal/help/_SNDCLOSE.md

508 B

The _SNDCLOSE statement frees and unloads an open sound using a _SNDOPEN or _SNDCOPY handle.

Syntax

_SNDCLOSE handle&

Description

  • If the sound is still playing, it will be freed automatically after it finishes.
    • Closing a looping/paused/etc. sound means it is never freed until the QB64 program terminates.
  • When your QB64 program terminates, all sounds are automatically freed.

See Also