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

97 lines
2.4 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_
2015-02-23 00:32:50 +00:00
#include <stdint.h>
2015-01-27 17:09:19 +00:00
#include <stddef.h>
#include <boolean.h>
2015-02-18 23:47:19 +00:00
#include "libretro-db/libretrodb.h"
2015-01-27 17:09:19 +00:00
#ifdef __cplusplus
extern "C" {
#endif
enum database_rdl_action_type
{
DATABASE_RDL_NONE = 0,
DATABASE_RDL_ITERATE,
DATABASE_RDL_FREE,
};
typedef struct
{
enum database_rdl_action_type status;
size_t list_ptr;
struct string_list *list;
} database_info_rdl_handle_t;
2015-01-27 17:09:19 +00:00
typedef struct
{
char *name;
2015-01-27 17:09:19 +00:00
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;
2015-01-28 10:08:44 +00:00
char *enhancement_hw;
2015-02-02 01:09:26 +00:00
char *crc32;
2015-02-02 03:03:46 +00:00
char *sha1;
char *md5;
2015-02-02 03:41:31 +00:00
unsigned famitsu_magazine_rating;
2015-01-27 18:20:39 +00:00
unsigned edge_magazine_rating;
unsigned edge_magazine_issue;
unsigned max_users;
unsigned releasemonth;
unsigned releaseyear;
int analog_supported;
int 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);
database_info_rdl_handle_t *database_info_write_rdl_init(const char *dir);
void database_info_write_rdl_free(database_info_rdl_handle_t *dbl);
int database_info_write_rdl_iterate(database_info_rdl_handle_t *dbl);
2015-01-27 17:09:19 +00:00
#ifdef __cplusplus
}
#endif
#endif /* CORE_INFO_H_ */