blob: dbc43460b6ba5aa0445ce6272a24c93abc4f803f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#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
|