1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 09:48:42 +00:00
RetroArch/database_info.h

69 lines
1.8 KiB
C
Raw Normal View History

2015-01-27 17:09:19 +00:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
* Copyright (C) 2011-2015 - Daniel De Matteis
* Copyright (C) 2013-2015 - Jason Fetters
*
* 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 DATABASE_INFO_H_
#define DATABASE_INFO_H_
#include <stddef.h>
#include "libretrodb/libretrodb.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct
{
char *description;
char *publisher;
char *developer;
char *origin;
char *franchise;
2015-01-27 18:20:39 +00:00
char *edge_magazine_review;
char *bbfc_rating;
char *elspa_rating;
char *esrb_rating;
char *pegi_rating;
char *cero_rating;
unsigned edge_magazine_rating;
unsigned edge_magazine_issue;
unsigned max_users;
unsigned releasemonth;
unsigned releaseyear;
2015-01-27 18:41:35 +00:00
unsigned analog_supported;
unsigned rumble_supported;
2015-01-27 17:09:19 +00:00
void *userdata;
} database_info_t;
typedef struct
{
database_info_t *list;
size_t count;
} database_info_list_t;
database_info_list_t *database_info_list_new(const char *rdb_path, const char *query);
void database_info_list_free(database_info_list_t *list);
int database_open_cursor(libretrodb_t *db,
libretrodb_cursor_t *cur, const char *query);
#ifdef __cplusplus
}
#endif
#endif /* CORE_INFO_H_ */