RetroArch/dirs.h

59 lines
1.5 KiB
C
Raw Normal View History

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