BASS.NET API for the Un4seen BASS Audio Library

BassWinampBASS_WINAMP_GetExtentions Method

BASS.NET API for the Un4seen BASS Audio Library
Gets the supported file filter extensions of the given winamp input plug-in.

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

[DllImportAttribute("bass_winamp")]
public static IntPtr BASS_WINAMP_GetExtentions(
	int handle
)

Parameters

handle
Type: SystemInt32
The handle of the winamp input plugin.

Return Value

Type: IntPtr
Returns a pointer to a list of null-terminated strings (ending with a double null) representing the supported extensions of the winamp input plugin.

Use IntPtrToArrayNullTermAnsi(IntPtr) to convert this to an array of string. Or use BASS_WINAMP_GetExtentionsFilter(Int32) instead.

Remarks

Example of how extentions are returned: "Layer 3 MPEG\0*.mp3;*.mp2\0Layer 2 MPEG\0*.mp2\0Layer 1 MPEG\0*.mpg\0\0"
See Also

Reference