BASS.NET API for the Un4seen BASS Audio Library

BassBASS_GetConfigBool Method

BASS.NET API for the Un4seen BASS Audio Library
Retrieves the value of a config option as a bool.

Namespace:  Un4seen.Bass
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

[DllImportAttribute("bass", EntryPoint = "BASS_GetConfig")]
public static bool BASS_GetConfigBool(
	BASSConfig option
)

Parameters

option
Type: Un4seen.BassBASSConfig
The option to get the value of... one of the following (BASSConfig).

Return Value

Type: Boolean
If successful, the value of the requested config option is returned (as a bool). Use BASS_ErrorGetCode to get the error code.
Remarks

Other config options may be supported by Add-Ons, see the documentation.

ERROR CODEDescription
BASS_ERROR_ILLPARAMoption is invalid.

Examples

Getting the DSP processing option:
bool floatDSP = Bass.BASS_SetConfig(BASSConfig.BASS_CONFIG_FLOATDSP);
See Also

Reference