menu.h 468 B

123456789101112131415161718
  1. /*
  2. * PicoDrive
  3. * (C) notaz, 2006-2008
  4. *
  5. * This work is licensed under the terms of MAME license.
  6. * See COPYING file in the top-level directory.
  7. */
  8. void menu_loop(void);
  9. int menu_loop_tray(void);
  10. void menu_romload_prepare(const char *rom_name);
  11. void menu_romload_end(void);
  12. #define CONFIGURABLE_KEYS \
  13. (PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT|PBTN_STOP|PBTN_PLAY|PBTN_FWD|PBTN_REW| \
  14. PBTN_L|PBTN_R|PBTN_VOLUME|PBTN_BRIGHTNESS|PBTN_ALARM)