NowPlaying.dll: Added support for types NUMBER and YEAR

This commit is contained in:
Birunthan Mohanathas
2012-03-12 12:01:12 +00:00
parent 63c42fe3a5
commit a57d75399c
9 changed files with 104 additions and 50 deletions

View File

@ -30,6 +30,8 @@ CPlayer::CPlayer() :
m_TrackCount(),
m_Measures(),
m_State(),
m_Number(1),
m_Year(),
m_Shuffle(false),
m_Repeat(false),
m_Duration(),
@ -204,4 +206,6 @@ void CPlayer::ClearData()
m_Duration = 0;
m_Position = 0;
m_Rating = 0;
m_Number = 0;
m_Year = 0;
}