mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
NowPlayingPlugin:
- Fixed that PlayerName=, TrackChangeAction=, and DisableLeadingZero= were global (i.e. only usable from the first loaded skin) - Code refactoring and cleanup
This commit is contained in:
@ -27,22 +27,19 @@ public:
|
||||
CPlayerWLM();
|
||||
~CPlayerWLM();
|
||||
|
||||
virtual void Pause() { return PlayPause(); }
|
||||
virtual void Play() { return PlayPause(); }
|
||||
virtual void PlayPause();
|
||||
virtual void UpdateData();
|
||||
|
||||
virtual void Pause() { return Play(); }
|
||||
virtual void Play();
|
||||
virtual void Stop();
|
||||
virtual void Next();
|
||||
virtual void Previous();
|
||||
|
||||
virtual void AddInstance(MEASURETYPE type);
|
||||
virtual void RemoveInstance();
|
||||
virtual void UpdateData();
|
||||
|
||||
private:
|
||||
static LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
||||
void SendKeyInput(WORD key);
|
||||
|
||||
HWND m_Window; // Spotify window
|
||||
HWND m_Window;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user