mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-01-15 21:05:20 +00:00
10 lines
131 B
C
10 lines
131 B
C
|
#pragma once
|
||
|
class Stopper
|
||
|
{
|
||
|
public:
|
||
|
Stopper();
|
||
|
void ChangeTracking(bool);
|
||
|
void Stop();
|
||
|
void Play();
|
||
|
int isplaying, timems;
|
||
|
};
|