mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-04 21:51:02 -05:00
18 lines
206 B
C++
18 lines
206 B
C++
#ifndef _BUTTONS_H
|
|
#define _BUTTONS_H
|
|
|
|
// codes for
|
|
|
|
namespace UserButton {
|
|
enum {
|
|
PREV=0,
|
|
PLAY,
|
|
PAUSE,
|
|
STOP,
|
|
NEXT,
|
|
};
|
|
const int first = PREV;
|
|
const int last = NEXT;
|
|
};
|
|
|
|
#endif
|