mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
10 lines
No EOL
131 B
C++
10 lines
No EOL
131 B
C++
#pragma once
|
|
class Stopper
|
|
{
|
|
public:
|
|
Stopper();
|
|
void ChangeTracking(bool);
|
|
void Stop();
|
|
void Play();
|
|
int isplaying, timems;
|
|
}; |