mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
- NowPlaying.dll/iTunesPlugin.dll: Fixed incompatibility with iTunes controllers
- NowPlaying.dll: Removed support for caching cover art
This commit is contained in:
@ -23,6 +23,13 @@
|
||||
|
||||
struct ParentMeasure
|
||||
{
|
||||
ParentMeasure() :
|
||||
player(NULL),
|
||||
childCount(1),
|
||||
trackCount(0),
|
||||
disableLeadingZero(false)
|
||||
{}
|
||||
|
||||
UINT id;
|
||||
UINT childCount;
|
||||
UINT trackCount;
|
||||
@ -33,16 +40,17 @@ struct ParentMeasure
|
||||
std::wstring trackChangeAction;
|
||||
std::wstring playerPath;
|
||||
bool disableLeadingZero;
|
||||
|
||||
ParentMeasure() : player(NULL) {}
|
||||
};
|
||||
|
||||
struct ChildMeasure
|
||||
{
|
||||
ChildMeasure() :
|
||||
type(MEASURE_NONE),
|
||||
parent(NULL)
|
||||
{}
|
||||
|
||||
MEASURETYPE type;
|
||||
ParentMeasure* parent;
|
||||
|
||||
ChildMeasure() : parent(NULL) {}
|
||||
};
|
||||
|
||||
void SecondsToTime(UINT seconds, bool leadingZero, WCHAR* buffer);
|
||||
|
Reference in New Issue
Block a user