RetroArch/system.h

63 lines
1.5 KiB
C
Raw Normal View History

2015-06-25 09:02:01 +00:00
/* RetroArch - A frontend for libretro.
2016-01-10 03:06:50 +00:00
* Copyright (C) 2011-2016 - Daniel De Matteis
2015-06-25 09:02:01 +00: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 __RARCH_SYSTEM_H
#define __RARCH_SYSTEM_H
2015-12-06 18:37:35 +00:00
#include <retro_miscellaneous.h>
#include <retro_common_api.h>
#include <libretro.h>
2015-12-06 18:37:35 +00:00
#include "driver.h"
2015-06-25 09:02:01 +00:00
2015-12-06 18:37:35 +00:00
#ifndef MAX_USERS
#define MAX_USERS 16
#endif
RETRO_BEGIN_DECLS
2015-06-25 09:02:01 +00:00
2015-06-25 10:22:38 +00:00
typedef struct rarch_system_info
{
struct retro_system_info info;
unsigned rotation;
unsigned performance_level;
const char *input_desc_btn[MAX_USERS][RARCH_FIRST_META_KEY];
char valid_extensions[PATH_MAX_LENGTH];
2016-03-04 19:00:49 +00:00
struct retro_disk_control_callback disk_control_cb;
struct retro_location_callback location_cb;
2015-06-25 10:22:38 +00:00
2016-03-04 18:29:22 +00:00
struct
{
struct retro_subsystem_info *data;
unsigned size;
} subsystem;
2015-06-25 10:22:38 +00:00
2016-03-04 18:29:22 +00:00
struct
{
struct retro_controller_info *data;
unsigned size;
} ports;
struct retro_memory_map mmaps;
2015-06-25 10:22:38 +00:00
} rarch_system_info_t;
RETRO_END_DECLS
2015-06-25 09:02:01 +00:00
#endif