mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
NowPlayingPlugin: Improved MusicBee & MediaMonkey support and fixed that the ClosePlayer bang with iTunes does not always work.
This commit is contained in:
@ -21,10 +21,16 @@
|
||||
|
||||
#include "Player.h"
|
||||
|
||||
enum WINAMPTYPE
|
||||
{
|
||||
WA_WINAMP,
|
||||
WA_MEDIAMONKEY
|
||||
};
|
||||
|
||||
class CPlayerWinamp : public CPlayer
|
||||
{
|
||||
public:
|
||||
CPlayerWinamp();
|
||||
CPlayerWinamp(WINAMPTYPE type);
|
||||
~CPlayerWinamp();
|
||||
|
||||
virtual void Play();
|
||||
@ -49,6 +55,7 @@ private:
|
||||
|
||||
bool m_HasCoverMeasure;
|
||||
bool m_UseUnicodeAPI;
|
||||
WINAMPTYPE m_WinampType;
|
||||
HWND m_Window; // Winamp window
|
||||
HANDLE m_WinampHandle; // Handle to Winamp process
|
||||
LPCVOID m_WinampAddress;
|
||||
|
Reference in New Issue
Block a user