mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-04 14:21:03 -05: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;
|
||
|
};
|