2013-09-19 14:49:07 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
2013-09-19 14:49:07 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MENU_CONTEXT_H
|
|
|
|
#define __MENU_CONTEXT_H
|
|
|
|
|
|
|
|
#include "../../boolean.h"
|
|
|
|
#include "../../driver.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "../../config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct menu_ctx_driver
|
|
|
|
{
|
2014-03-07 06:28:28 +01:00
|
|
|
void (*set_texture)(void*, void*, bool);
|
|
|
|
void (*render_messagebox)(void*, void*, const char*);
|
|
|
|
void (*render)(void*, void*);
|
|
|
|
void* (*init)(void*);
|
2013-11-08 15:13:14 +01:00
|
|
|
void (*free)(void*);
|
2014-03-07 06:28:28 +01:00
|
|
|
void (*init_assets)(void*, void*);
|
2013-11-08 15:13:14 +01:00
|
|
|
void (*free_assets)(void*);
|
2013-11-19 06:09:14 +01:00
|
|
|
void (*populate_entries)(void*, unsigned);
|
2013-11-19 06:35:11 +01:00
|
|
|
void (*iterate)(void*, unsigned);
|
2014-02-28 01:44:03 +01:00
|
|
|
int (*input_postprocess)(void *, uint64_t);
|
2013-09-19 14:49:07 +02:00
|
|
|
|
|
|
|
// Human readable string.
|
|
|
|
const char *ident;
|
|
|
|
} menu_ctx_driver_t;
|
|
|
|
|
|
|
|
extern const menu_ctx_driver_t menu_ctx_rmenu;
|
2013-09-19 15:01:17 +02:00
|
|
|
extern const menu_ctx_driver_t menu_ctx_rmenu_xui;
|
2013-09-19 14:49:07 +02:00
|
|
|
extern const menu_ctx_driver_t menu_ctx_rgui;
|
2014-02-26 21:10:17 +01:00
|
|
|
extern const menu_ctx_driver_t menu_ctx_lakka;
|
2013-09-19 14:49:07 +02:00
|
|
|
|
|
|
|
const menu_ctx_driver_t *menu_ctx_find_driver(const char *ident); // Finds driver with ident. Does not initialize.
|
2014-03-07 06:28:28 +01:00
|
|
|
bool menu_ctx_init_first(const menu_ctx_driver_t **driver, void **handle, void *video_data); // Finds first suitable driver and initializes.
|
2014-01-27 01:32:05 +01:00
|
|
|
void find_prev_menu_driver(void);
|
|
|
|
void find_next_menu_driver(void);
|
2013-09-19 14:49:07 +02:00
|
|
|
|
|
|
|
#endif
|