BASS.NET API for the Un4seen BASS Audio Library

BassWinampBASS_WINAMP_ConfigPlugin Method

BASS.NET API for the Un4seen BASS Audio Library
Shows the configuration dialog of the loaded 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 void BASS_WINAMP_ConfigPlugin(
	int handle,
	IntPtr win
)

Parameters

handle
Type: SystemInt32
The handle of the winamp input plugin.
win
Type: SystemIntPtr
The application's main window... IntPtr.Zero = the current foreground window (use this for console applications, or pass this.Handle).
Examples

C#
int pluginHandle = BassWinamp.BASS_WINAMP_LoadPlugin( @"C:\Programme\Winamp\Plugins\in_mp3.dll" );
if (pluginHandle != 0)
{
    BassWinamp.BASS_WINAMP_ConfigPlugin( pluginHandle, this.Handle );
}
See Also

Reference