RetroArch/dirs.h

59 lines
1.5 KiB
C
Raw Normal View History

2016-09-17 12:44:19 +00:00
/* RetroArch - A frontend for libretro.
2017-03-22 02:09:18 +00:00
* Copyright (C) 2011-2017 - Daniel De Matteis
2016-09-17 12:44:19 +00: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 __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-11-27 01:46:09 +00:00
RARCH_DIR_SYSTEM
2016-10-01 21:22:40 +00:00
};
2016-09-23 01:19:33 +00:00
bool dir_init_shader(void);
bool dir_free_shader(void);
void dir_check_shader(bool pressed_next, bool pressed_prev);
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
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
2016-10-03 06:07:52 +00:00
size_t dir_get_size(enum rarch_dir_type type);
2016-09-17 14:21:48 +00:00
2016-10-03 06:15:41 +00:00
char *dir_get_ptr(enum rarch_dir_type type);
2016-10-03 06:15:41 +00:00
const char *dir_get(enum rarch_dir_type type);
2016-10-01 07:06:55 +00:00
2016-10-03 06:20:33 +00:00
void dir_set(enum rarch_dir_type type, 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