mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-03 02:57:16 +01: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;
|
|
}
|