NowPlayingPlugin: Added support for MusicBee, fixed Debug build, and updated Winamp SDK.

This commit is contained in:
Birunthan Mohanathas
2011-05-24 18:20:35 +00:00
parent 31e3091e34
commit 2ba2e95736
15 changed files with 1896 additions and 406 deletions

View File

@ -320,9 +320,9 @@ void CPlayerFoobar::UpdateData()
}
/*
** PlayPause
** Play
**
** Handles the PlayPause bang.
** Handles the Play bang.
**
*/
void CPlayerFoobar::Play()
@ -397,11 +397,8 @@ void CPlayerFoobar::Previous()
*/
void CPlayerFoobar::ChangeVolume(int volume)
{
if (m_FooWindow)
{
volume += m_Volume;
SendMessage(m_FooWindow, WM_USER, volume, FOO_SETVOLUME);
}
volume += m_Volume;
SetVolume(volume);
}
/*