2014-10-12 00:45:42 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2015-01-07 17:46:50 +01:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2014-10-12 00:45:42 +02:00
|
|
|
*
|
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
#ifndef MENU_CBS_H__
|
|
|
|
#define MENU_CBS_H__
|
2014-10-12 00:45:42 +02:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
2015-02-26 16:50:30 +01:00
|
|
|
#include <boolean.h>
|
2014-10-12 00:45:42 +02:00
|
|
|
|
2015-06-05 13:47:17 +02:00
|
|
|
#include "menu_hash.h"
|
|
|
|
|
2014-10-12 20:22:33 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-02-26 17:33:00 +01:00
|
|
|
/* FIXME - Externs, refactor */
|
|
|
|
extern size_t hack_shader_pass;
|
|
|
|
#ifdef HAVE_NETWORKING
|
|
|
|
extern char core_updater_path[PATH_MAX_LENGTH];
|
|
|
|
#endif
|
|
|
|
|
2015-06-06 20:35:39 +02:00
|
|
|
/* Function callbacks */
|
|
|
|
|
|
|
|
int core_setting_right(unsigned type, const char *label,
|
|
|
|
bool wraparound);
|
2015-06-06 20:40:17 +02:00
|
|
|
|
|
|
|
int action_right_input_desc(unsigned type, const char *label,
|
|
|
|
bool wraparound);
|
|
|
|
|
|
|
|
int action_right_cheat(unsigned type, const char *label,
|
|
|
|
bool wraparound);
|
2015-06-06 20:35:39 +02:00
|
|
|
/* End of function callbacks */
|
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_left(menu_file_list_cbs_t *cbs,
|
2015-05-18 15:56:32 +02:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1, const char *menu_label,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-05-18 15:56:32 +02:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_right(menu_file_list_cbs_t *cbs,
|
2015-05-12 13:03:29 +02:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1, const char *menu_label,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-05-12 13:03:29 +02:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_refresh(menu_file_list_cbs_t *cbs,
|
2015-02-27 03:25:28 +01:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-27 03:25:28 +01:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_get_string_representation(menu_file_list_cbs_t *cbs,
|
2015-02-27 02:50:19 +01:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-27 02:50:19 +01:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_up(menu_file_list_cbs_t *cbs,
|
2015-05-18 15:31:53 +02:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-05-18 15:31:53 +02:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_down(menu_file_list_cbs_t *cbs,
|
2015-02-27 03:21:49 +01:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-27 03:21:49 +01:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_info(menu_file_list_cbs_t *cbs,
|
2015-02-27 03:08:30 +01:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-27 03:08:30 +01:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_start(menu_file_list_cbs_t *cbs,
|
2015-02-26 18:28:48 +01:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-26 18:28:48 +01:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_content_list_switch(menu_file_list_cbs_t *cbs,
|
2015-02-27 03:28:50 +01:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-27 03:28:50 +01:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_cancel(menu_file_list_cbs_t *cbs,
|
2015-02-26 17:22:00 +01:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-26 17:22:00 +01:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_ok(menu_file_list_cbs_t *cbs,
|
2015-02-26 16:50:30 +01:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1, const char *menu_label,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-26 16:50:30 +01:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_iterate(menu_file_list_cbs_t *cbs,
|
2015-02-27 03:05:19 +01:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-27 03:05:19 +01:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_deferred_push(menu_file_list_cbs_t *cbs,
|
2015-02-26 17:33:00 +01:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-26 17:33:00 +01:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_select(menu_file_list_cbs_t *cbs,
|
2015-06-01 09:10:43 +02:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-06-01 09:10:43 +02:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_scan(menu_file_list_cbs_t *cbs,
|
2015-05-27 06:57:01 +02:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-05-27 06:57:01 +02:00
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
int menu_cbs_init_bind_title(menu_file_list_cbs_t *cbs,
|
2015-06-01 12:24:48 +02:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 13:17:44 +02:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-06-01 12:24:48 +02:00
|
|
|
|
2015-02-26 17:33:00 +01:00
|
|
|
int deferred_push_content_list(void *data, void *userdata,
|
|
|
|
const char *path, const char *label, unsigned type);
|
|
|
|
|
2015-06-12 16:01:46 +02:00
|
|
|
void menu_cbs_init(void *data,
|
2014-10-12 00:45:42 +02:00
|
|
|
const char *path, const char *label,
|
2014-10-20 19:18:18 +02:00
|
|
|
unsigned type, size_t idx);
|
2014-10-12 00:45:42 +02:00
|
|
|
|
2014-10-12 20:22:33 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-10-12 00:45:42 +02:00
|
|
|
#endif
|