BASS.NET API for the Un4seen BASS Audio Library

BassWaDspBASS_WADSP_SetSongTitle Method

BASS.NET API for the Un4seen BASS Audio Library
Set the song title for a loaded Winamp DSP plugin.

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

[DllImportAttribute("bass_wadsp")]
public static bool BASS_WADSP_SetSongTitle(
	int plugin,
	string title
)

Parameters

plugin
Type: SystemInt32
The plugin handle (returned by BASS_WADSP_Load(String, Int32, Int32, Int32, Int32, WINAMPWINPROC)).
title
Type: SystemString
The song title to set.

Return Value

Type: Boolean
on success, else . Use BASS_ErrorGetCode to get the error code.
Remarks

Some Winamp DSPs require or simply display a current song title. Use this method to set this song title. It will then be used in the internal Window message handler for the related fake Winamp window. In most cases it is not required to set any song title at all - however streaming DSP might use this for updating it's metadata.

ERROR CODEDescription
BASS_ERROR_HANDLEThe plugin is not a valid plugin handle.

See Also

Reference