Menu

#1 PlaylistTitle (Read)

open
nobody
None
5
2001-07-16
2001-07-16
Anonymous
No

function TGPFWinAmpControl.GetPlaylistTitle(Index:
Integer): String;
begin
if Assigned(FPlugin) then
begin
if FPlugin.GetPluginType <> waplNone then
Result := StrPas(PChar(SendMessage
(HWindow,WM_USER,0,WAUM_PLAYLIST_GETTIT)));
end
else
Result := '';
end;

Instead of always sending 0 this should send Index.

Discussion


Log in to post a comment.