X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=common%2Fmenu.h;h=1a4ded2e07cc6d95f9fe5bcbb55a340e0f06895a;hb=367b6f1f939dcd7930d372aee0ca900b0b8790b1;hp=0b5aac30cc2c5d4226aecc1199760fd730544bba;hpb=3e85ebdd8598be8816138335483f7a774519e5f8;p=libpicofe.git diff --git a/common/menu.h b/common/menu.h index 0b5aac3..1a4ded2 100644 --- a/common/menu.h +++ b/common/menu.h @@ -1,4 +1,4 @@ -// (c) Copyright 2006,2007 notaz, All rights reserved. +// (c) Copyright 2006-2008 notaz, All rights reserved. void menu_init(void); @@ -9,7 +9,6 @@ void menu_draw_selection(int x, int y, int w); extern char menuErrorMsg[64]; - typedef enum { MB_NONE = 1, /* no auto processing */ @@ -65,6 +64,7 @@ typedef enum MA_OPT2_SQUIDGEHACK, /* gp2x */ MA_OPT2_STATUS_LINE, /* psp */ MA_OPT2_NO_FRAME_LIMIT, /* psp */ + MA_OPT2_SVP_DYNAREC, MA_OPT2_DONE, MA_OPT3_SCALE, /* psp (all OPT3) */ MA_OPT3_HSCALE32, @@ -102,6 +102,15 @@ typedef struct char need_to_save; } menu_entry; +typedef struct +{ + char *name; + int mask; +} me_bind_action; + +extern me_bind_action me_ctrl_actions[12]; +extern me_bind_action emuctrl_actions[]; // platform code + typedef void (me_draw_custom_f)(const menu_entry *entry, int x, int y, void *param);