mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-01-08 10:12:01 -05:00
19 lines
206 B
C
19 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
|