RetroArch/dirs.h

76 lines
1.6 KiB
C
Raw Normal View History

2016-09-17 14:44:19 +02: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-09-30 07:02:23 +02:00
enum rarch_dir_type
{
RARCH_DIR_NONE = 0,
RARCH_DIR_SYSTEM,
RARCH_DIR_SAVEFILE,
RARCH_DIR_SAVESTATE,
RARCH_DIR_OSK_OVERLAY
2016-09-30 07:02:23 +02:00
};
/* init functions */
2016-09-23 03:19:33 +02:00
bool dir_init_shader(void);
/* free functions */
2016-09-23 03:19:33 +02:00
bool dir_free_shader(void);
/* check functions */
2016-09-23 03:19:33 +02:00
void dir_check_shader(bool pressed_next, bool pressed_prev);
/* empty functions */
2016-09-30 07:06:27 +02:00
bool dir_is_empty(enum rarch_dir_type type);
2016-09-17 16:21:48 +02:00
/* clear functions */
2016-09-30 07:02:23 +02:00
void dir_clear(enum rarch_dir_type type);
2016-09-17 14:53:30 +02:00
2016-09-17 16:21:48 +02:00
void dir_clear_all(void);
2016-09-17 14:53:30 +02:00
/* get size functions */
size_t dir_get_size(enum rarch_dir_type type);
2016-09-17 16:21:48 +02:00
/* get ptr functions */
2016-09-30 07:21:33 +02:00
char *dir_get_ptr(enum rarch_dir_type type);
2016-09-17 16:10:49 +02:00
/* get functions */
2016-09-30 07:11:52 +02:00
const char *dir_get(enum rarch_dir_type type);
/* set functions */
2016-09-30 07:15:30 +02:00
void dir_set(enum rarch_dir_type type, const char *path);
2016-09-17 14:49:35 +02:00
2016-09-19 00:56:00 +02:00
void dir_check_defaults(void);
2016-09-17 14:44:19 +02:00
RETRO_END_DECLS
#endif