2013-07-26 20:58:47 +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-07-26 20:58:47 +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 __FRONTEND_CONTEXT_H
|
|
|
|
#define __FRONTEND_CONTEXT_H
|
|
|
|
|
2014-06-05 06:12:41 +02:00
|
|
|
#include <stddef.h>
|
2013-07-26 20:58:47 +02:00
|
|
|
#include "../boolean.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "../config.h"
|
|
|
|
#endif
|
|
|
|
|
2014-06-01 05:35:28 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-07-26 20:58:47 +02:00
|
|
|
typedef struct frontend_ctx_driver
|
|
|
|
{
|
2014-06-03 03:35:12 +02:00
|
|
|
void (*environment_get)(int *argc, char *argv[], void *args,
|
|
|
|
void *params_data);
|
2013-07-26 20:58:47 +02:00
|
|
|
|
2013-11-03 16:38:56 +01:00
|
|
|
void (*init)(void *data);
|
|
|
|
void (*deinit)(void *data);
|
2014-06-05 06:12:41 +02:00
|
|
|
void (*exitspawn)(char *core_path, size_t sizeof_core_path);
|
2013-07-26 20:58:47 +02:00
|
|
|
|
2014-06-03 20:03:56 +02:00
|
|
|
void (*process_args)(int *argc, char *argv[], void *args);
|
2013-11-03 16:38:56 +01:00
|
|
|
int (*process_events)(void *data);
|
2013-07-27 03:59:01 +02:00
|
|
|
void (*exec)(const char *, bool);
|
2013-07-27 16:36:55 +02:00
|
|
|
void (*shutdown)(bool);
|
2014-06-12 22:31:25 +02:00
|
|
|
void (*get_name)(char *, size_t);
|
2014-05-16 22:20:33 +02:00
|
|
|
int (*get_rating)(void);
|
2013-07-26 20:58:47 +02:00
|
|
|
|
|
|
|
// Human readable string.
|
|
|
|
const char *ident;
|
|
|
|
} frontend_ctx_driver_t;
|
|
|
|
|
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_gx;
|
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_ps3;
|
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_xdk;
|
2013-07-27 17:16:46 +02:00
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_qnx;
|
2013-07-27 17:40:21 +02:00
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_apple;
|
2013-11-03 16:38:56 +01:00
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_android;
|
2014-02-12 18:24:34 +01:00
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_psp;
|
2014-05-09 06:12:53 +02:00
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_null;
|
2013-07-26 20:58:47 +02:00
|
|
|
|
|
|
|
const frontend_ctx_driver_t *frontend_ctx_find_driver(const char *ident); // Finds driver with ident. Does not initialize.
|
|
|
|
const frontend_ctx_driver_t *frontend_ctx_init_first(void); // Finds first suitable driver and initializes.
|
|
|
|
|
2014-06-01 05:35:28 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-07-26 20:58:47 +02:00
|
|
|
#endif
|