RetroArch/dirs.h

112 lines
2.3 KiB
C
Raw Normal View History

2016-09-17 12:44:19 +00:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2011-2016 - Daniel De Matteis
*
* 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 __DIRS_H
#define __DIRS_H
#include <boolean.h>
#include <retro_common_api.h>
RETRO_BEGIN_DECLS
2016-10-01 21:22:40 +00:00
enum rarch_dir_type
{
RARCH_DIR_NONE = 0,
RARCH_DIR_SAVEFILE,
RARCH_DIR_SAVESTATE,
RARCH_DIR_CURRENT_SAVEFILE,
RARCH_DIR_CURRENT_SAVESTATE,
2016-10-01 21:22:40 +00:00
RARCH_DIR_SYSTEM,
RARCH_DIR_OSK_OVERLAY
};
/* init functions */
2016-09-23 01:19:33 +00:00
bool dir_init_shader(void);
/* free functions */
2016-09-23 01:19:33 +00:00
bool dir_free_shader(void);
/* check functions */
2016-09-23 01:19:33 +00:00
void dir_check_shader(bool pressed_next, bool pressed_prev);
/* empty functions */
2016-10-01 21:30:09 +00:00
bool dir_is_empty(enum rarch_dir_type type);
2016-09-17 14:21:48 +00:00
/* clear functions */
2016-10-01 21:26:59 +00:00
void dir_clear(enum rarch_dir_type type);
2016-09-17 12:53:30 +00:00
2016-09-17 14:21:48 +00:00
void dir_clear_all(void);
2016-09-17 12:53:30 +00:00
/* get size functions */
size_t dir_get_osk_overlay_size(void);
size_t dir_get_system_size(void);
size_t dir_get_savestate_size(void);
size_t dir_get_savefile_size(void);
2016-09-17 14:21:48 +00:00
/* get ptr functions */
char *dir_get_osk_overlay_ptr(void);
char *dir_get_savefile_ptr(void);
char *dir_get_savestate_ptr(void);
char *dir_get_system_ptr(void);
char *dir_get_osk_overlay_ptr(void);
2016-09-17 14:10:49 +00:00
/* get functions */
const char *dir_get_osk_overlay(void);
const char *dir_get_savefile(void);
const char *dir_get_savestate(void);
const char *dir_get_system(void);
const char *dir_get_current_savefile(void);
2016-10-01 07:06:55 +00:00
const char *dir_get_current_savestate(void);
/* set functions */
2016-10-01 07:06:55 +00:00
void dir_set_current_savefile(const char *path);
void dir_set_current_savestate(const char *path);
void dir_set_osk_overlay(const char *path);
void dir_set_savefile(const char *path);
void dir_set_savestate(const char *path);
void dir_set_system(const char *path);
2016-09-17 12:49:35 +00:00
2016-09-18 22:56:00 +00:00
void dir_check_defaults(void);
2016-09-17 12:44:19 +00:00
RETRO_END_DECLS
#endif