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-02-13 06:06:51 +01:00
|
|
|
enum cheevos_ctl_state
|
|
|
|
{
|
|
|
|
CHEEVOS_CTL_NONE = 0,
|
2016-02-13 06:09:37 +01:00
|
|
|
CHEEVOS_CTL_TEST,
|
2016-02-13 06:11:17 +01:00
|
|
|
CHEEVOS_CTL_LOAD,
|
2016-02-13 06:13:46 +01:00
|
|
|
|
2016-02-13 06:24:49 +01:00
|
|
|
CHEEVOS_CTL_APPLY_CHEATS,
|
|
|
|
|
2016-02-13 06:13:46 +01:00
|
|
|
/* Unload the achievements from memory. */
|
|
|
|
CHEEVOS_CTL_UNLOAD,
|
|
|
|
|
2016-03-14 12:53:56 +01:00
|
|
|
/* Toggle Hardcore Mode */
|
|
|
|
CHEEVOS_CTL_TOGGLE_HARDCORE_MODE,
|
|
|
|
|
2016-02-13 06:13:46 +01:00
|
|
|
/* Load the achievements into memory if
|
|
|
|
* the game has content. */
|
2016-02-13 06:15:38 +01:00
|
|
|
CHEEVOS_CTL_SET_CHEATS,
|
2015-10-15 16:08:48 +02:00
|
|
|
|
2016-02-13 06:30:39 +01:00
|
|
|
CHEEVOS_CTL_GET_DESCRIPTION,
|
|
|
|
|
2016-02-13 06:15:38 +01:00
|
|
|
CHEEVOS_CTL_POPULATE_MENU
|
|
|
|
};
|
2015-11-08 13:19:54 -02:00
|
|
|
|
2016-02-13 06:30:39 +01:00
|
|
|
typedef struct cheevos_ctx_desc
|
|
|
|
{
|
|
|
|
unsigned idx;
|
|
|
|
char *s;
|
|
|
|
size_t len;
|
|
|
|
} cheevos_ctx_desc_t;
|
2015-11-08 16:42:23 -02:00
|
|
|
|
2016-02-13 06:06:51 +01:00
|
|
|
bool cheevos_ctl(enum cheevos_ctl_state state, void *data);
|
|
|
|
|
2015-10-09 13:29:57 -03:00
|
|
|
#endif /* __RARCH_CHEEVOS_H */
|