buttons.h 206 B

123456789101112131415161718
  1. #ifndef _BUTTONS_H
  2. #define _BUTTONS_H
  3. // codes for
  4. namespace UserButton {
  5. enum {
  6. PREV=0,
  7. PLAY,
  8. PAUSE,
  9. STOP,
  10. NEXT,
  11. };
  12. const int first = PREV;
  13. const int last = NEXT;
  14. };
  15. #endif