- NowPlaying.dll/iTunesPlugin.dll: Fixed incompatibility with iTunes controllers

- NowPlaying.dll: Removed support for caching cover art
This commit is contained in:
Birunthan Mohanathas
2011-11-05 17:52:53 +00:00
parent 2a166b520f
commit c8e4608b41
11 changed files with 109 additions and 156 deletions

View File

@ -34,6 +34,7 @@ enum PLAYSTATE
enum MEASURETYPE
{
MEASURE_NONE = 0x00000000,
MEASURE_ARTIST = 0x00000001,
MEASURE_TITLE = 0x00000002,
MEASURE_ALBUM = 0x00000004,
@ -65,8 +66,7 @@ public:
bool IsInitialized() { return m_Initialized; }
UINT GetTrackCount() { return m_TrackCount; }
std::wstring GetCacheFile();
void FindCover();
void FindLyrics();
@ -104,6 +104,7 @@ protected:
UINT m_InstanceCount;
UINT m_UpdateCount;
UINT m_TrackCount;
std::wstring m_TempCoverPath;
INT m_Measures;
PLAYSTATE m_State;