static int action_start_lookup_setting(unsigned type, const char *label, unsigned action) { int ret = menu_setting_set(type, label, MENU_ACTION_START, false); return ret; }
int bind_right_generic(unsigned type, const char *label, bool wraparound) { return menu_setting_set(type, label, MENU_ACTION_RIGHT, wraparound); }
static int bind_left_generic(unsigned type, const char *label, bool wraparound) { return menu_setting_set(type, label, MENU_ACTION_LEFT, wraparound); }
static int action_start_lookup_setting(unsigned type, const char *label) { return menu_setting_set(type, label, MENU_ACTION_START, false); }
static int action_ok_lookup_setting(const char *path, const char *label, unsigned type, size_t idx) { return menu_setting_set(type, label, MENU_ACTION_OK, false); }