BASS.NET API for the Un4seen BASS Audio Library

BassWinampBASS_WINAMP_InfoDlg Method

BASS.NET API for the Un4seen BASS Audio Library
Shows the Winamp input plugin information dialog for a given file (like pressing Alt+3 in Winamp).

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

[DllImportAttribute("bass_winamp")]
public static bool BASS_WINAMP_InfoDlg(
	string file,
	IntPtr win
)

Parameters

file
Type: SystemString
The name of the file to retrieve the information from.
win
Type: SystemIntPtr
The application's main window... IntPtr.Zero = the current foreground window (use this for console applications, or pass this.Handle).

Return Value

Type: Boolean
if the info dialog was called successfully, else is returned.
Examples

Show the winamp info dialog related to a file:
C#
int pluginHandle = BassWinamp.BASS_WINAMP_LoadPlugin( @"C:\Programme\Winamp\Plugins\in_mp3.dll" );
if (pluginHandle != 0)
{
    BassWinamp.BASS_WINAMP_InfoDlg( "test.mp3", this.Handle );
}
See Also

Reference