mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
24 lines
362 B
C++
24 lines
362 B
C++
|
#include "PlayStatus.h"
|
||
|
|
||
|
//std::map<char, DriveStatus> playStatus;
|
||
|
PlayStatus playStatus;
|
||
|
Nullsoft::Utility::LockGuard *playStatusGuard = 0;
|
||
|
|
||
|
DriveStatus::DriveStatus() : ripping(false)
|
||
|
{}
|
||
|
|
||
|
void DriveStatus::RippingStarted()
|
||
|
{
|
||
|
ripping = true;
|
||
|
}
|
||
|
|
||
|
void DriveStatus::RippingStopped()
|
||
|
{
|
||
|
ripping = false;
|
||
|
}
|
||
|
|
||
|
bool DriveStatus::IsRipping() const
|
||
|
{
|
||
|
return ripping;
|
||
|
}
|