1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 10:01:21 +00:00
qb64/internal/help/_SNDCOPY.txt

21 lines
669 B
Plaintext
Raw Normal View History

2016-03-18 11:36:04 +00:00
{{DISPLAYTITLE:_SNDCOPY}}
The [[_SNDCOPY]] function copies a sound to a new handle so that two or more of the same sound can be played at once. The passed handle parameter is from the [[_SNDOPEN]] function.
{{PageSyntax}}
2017-10-10 14:55:21 +00:00
: {{Parameter|copyHandle&}} = [[_SNDCOPY]]({{Parameter|handle&}})
{{PageDescription}}
2017-10-10 14:55:21 +00:00
* Returns a new handle to the a copy in memory of the sound data referred to by the source handle.
2016-03-18 11:36:04 +00:00
* No changes to the source handle (such as a volume change) are inherited.
* The sound data referred to by the handle and its copies are not freed until all of them are closed.
{{PageSeeAlso}}
2016-03-18 11:36:04 +00:00
* [[_SNDPLAYCOPY]]
* [[_SNDOPEN]]
2019-04-15 01:15:33 +00:00
{{PageNavigation}}