2015-10-09 13:29:57 -03:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2016-01-10 04:06:50 +01:00
|
|
|
* Copyright (C) 2015-2016 - Andre Leiradella
|
2015-10-09 13:29:57 -03: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_CHEEVOS_H
|
|
|
|
#define __RARCH_CHEEVOS_H
|
|
|
|
|
2015-10-30 14:21:29 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
typedef struct cheevos_ctx_desc
|
2016-02-13 06:06:51 +01:00
|
|
|
{
|
2016-05-08 00:15:04 +02:00
|
|
|
unsigned idx;
|
|
|
|
char *s;
|
|
|
|
size_t len;
|
|
|
|
} cheevos_ctx_desc_t;
|
2016-02-13 06:13:46 +01:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
bool cheevos_load(const void *data);
|
2016-02-13 06:24:49 +01:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
void cheevos_populate_menu(void *data);
|
2016-02-13 06:13:46 +01:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
bool cheevos_get_description(cheevos_ctx_desc_t *desc);
|
2016-03-14 12:53:56 +01:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
bool cheevos_apply_cheats(bool *data_bool);
|
2015-10-15 16:08:48 +02:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
bool cheevos_unload(void);
|
2016-02-13 06:30:39 +01:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
bool cheevos_toggle_hardcore_mode(void);
|
2015-11-08 13:19:54 -02:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
bool cheevos_test(void);
|
2015-11-08 16:42:23 -02:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
bool cheevos_set_cheats(void);
|
2016-02-13 06:06:51 +01:00
|
|
|
|
2016-05-12 22:03:18 -03:00
|
|
|
void cheevos_set_support_cheevos(bool state);
|
|
|
|
|
2015-10-09 13:29:57 -03:00
|
|
|
#endif /* __RARCH_CHEEVOS_H */
|