This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Loads sample from file on disk.
Syntax
channel = TBASS_SampleGetChannel(sample, onlyNew)
Returns
Number, sample handle - non-zero in case of success.
Parameters
Name |
Type |
Optional |
Meaning |
sample |
Numeric |
No |
sample to retrieve channel for |
onlyNew |
Numeric |
No |
do not recycle/override one of the sample's existing channels? |
Remarks
Restrictions
See also
Examples
' Load sample from file on disk, as looping
DWord sample = TBASS_SampleGetLoad(%TBASS_FALSE, "C:\sounds\mysound.wav", 0, 0, 1, %TBASS_SAMPLE_LOOP)
if sample <> 0 then
Dword channel = TBASS_SampleGetChannel(sample, %TBASS_FALSE)
end if