BASS.NET API for the Un4seen BASS Audio Library

BassWinampBASS_WINAMP_GetName Method

BASS.NET API for the Un4seen BASS Audio Library
Gets the name of the winamp input plugin.

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

public static string BASS_WINAMP_GetName(
	int handle
)

Parameters

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

Return Value

Type: String
The name of the plugin, or if the call failed.
Examples

Get the name of the winamp input plugin:
C#
int pluginHandle = BassWinamp.BASS_WINAMP_LoadPlugin( @"C:\Programme\Winamp\Plugins\in_mp3.dll" );
if (pluginHandle != 0)
{
    Console.WriteLine( BassWinamp.BASS_WINAMP_GetName(pluginHandle) );
}
See Also

Reference