mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 00:49:47 +00:00
70 lines
1.9 KiB
C
70 lines
1.9 KiB
C
|
/* RetroArch - A frontend for libretro.
|
||
|
* Copyright (C) 2015-2018 - Andre Leiradella
|
||
|
*
|
||
|
* 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_CHEEVOS_PARSER_H
|
||
|
#define __RARCH_CHEEVOS_PARSER_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stddef.h>
|
||
|
#include <boolean.h>
|
||
|
|
||
|
#include <retro_common_api.h>
|
||
|
|
||
|
RETRO_BEGIN_DECLS
|
||
|
|
||
|
typedef struct {
|
||
|
const char* title;
|
||
|
const char* description;
|
||
|
const char* badge;
|
||
|
const char* memaddr;
|
||
|
unsigned points;
|
||
|
unsigned id;
|
||
|
} cheevos_racheevo_t;
|
||
|
|
||
|
typedef struct {
|
||
|
const char* title;
|
||
|
const char* description;
|
||
|
const char* format;
|
||
|
const char* mem;
|
||
|
unsigned id;
|
||
|
} cheevos_ralboard_t;
|
||
|
|
||
|
typedef struct {
|
||
|
unsigned console_id;
|
||
|
|
||
|
cheevos_racheevo_t* core;
|
||
|
cheevos_racheevo_t* unofficial;
|
||
|
cheevos_ralboard_t* lboards;
|
||
|
|
||
|
unsigned core_count;
|
||
|
unsigned unofficial_count;
|
||
|
unsigned lboard_count;
|
||
|
} cheevos_rapatchdata_t;
|
||
|
|
||
|
typedef void (*cheevos_unlock_cb_t)(unsigned id, void* userdata);
|
||
|
|
||
|
int cheevos_get_token(const char* json, char* token, size_t length);
|
||
|
|
||
|
int cheevos_get_patchdata(const char* json, cheevos_rapatchdata_t* patchdata);
|
||
|
void cheevos_free_patchdata(cheevos_rapatchdata_t* patchdata);
|
||
|
|
||
|
void cheevos_deactivate_unlocks(const char* json, cheevos_unlock_cb_t unlock_cb, void* userdata);
|
||
|
|
||
|
unsigned chevos_get_gameid(const char* json);
|
||
|
|
||
|
RETRO_END_DECLS
|
||
|
|
||
|
#endif
|