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

@ -18,6 +18,8 @@
#include "StdAfx.h"
#include "PlayerAIMP.h"
#include "AIMP/aimp2_sdk.h"
#include "Winamp/wa_ipc.h"
extern CPlayer* g_AIMP;
@ -347,7 +349,7 @@ void CPlayerAIMP::SetRating(int rating)
}
/*
** Previous
** SetVolume
**
** Handles the SetVolume bang.
**
@ -366,7 +368,7 @@ void CPlayerAIMP::SetVolume(int volume)
void CPlayerAIMP::ChangeVolume(int volume)
{
volume += m_Volume;
SendMessage(m_Window, WM_AIMP_COMMAND, WM_AIMP_STATUS_SET, MAKELPARAM(volume, AIMP_STS_VOLUME));
SetVolume(volume);
}
/*