NowPlayingPlugin: Added SHUFFLE/REPEAT support to foobar2000.

This commit is contained in:
Birunthan Mohanathas
2011-09-11 10:34:06 +00:00
parent 6b5ca293e8
commit 75c8f52aa0
2 changed files with 50 additions and 1 deletions

View File

@ -38,6 +38,8 @@ public:
virtual void SetPosition(int position);
virtual void SetRating(int rating) {}
virtual void SetVolume(int volume);
virtual void SetShuffle(bool state);
virtual void SetRepeat(bool state);
virtual void ClosePlayer();
virtual void OpenPlayer(std::wstring& path);
@ -70,7 +72,8 @@ private:
FOO_QUITPLAYER,
FOO_SETCALLBACK,
FOO_REMOVECALLBACK,
FOO_SETPOSITION
FOO_SETPOSITION,
FOO_SETORDER
};
void Initialize();