TBASS_SampleGetChannel

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > TBASS (Sound Module) > Samples >

TBASS_SampleGetChannel

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