winamp/Src/Wasabi/api/core/buttons.h

19 lines
206 B
C
Raw Normal View History

2024-09-24 12:54:57 +00:00
#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