RetroArch/dirs.h

60 lines
1.5 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-09-30 05:02:23 +00:00
enum rarch_dir_type
{
RARCH_DIR_NONE = 0,
RARCH_DIR_SYSTEM,
RARCH_DIR_SAVEFILE,
RARCH_DIR_SAVESTATE,
2016-09-30 05:45:04 +00:00
RARCH_DIR_OSK_OVERLAY,
RARCH_DIR_RECORD_OUTPUT,
RARCH_DIR_RECORD_CONFIG
2016-09-30 05:02:23 +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-09-30 05:06:27 +00:00
bool dir_is_empty(enum rarch_dir_type type);
2016-09-17 14:21:48 +00:00
2016-09-30 05:02:23 +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-09-30 05:45:04 +00:00
size_t dir_get_ptr_size(enum rarch_dir_type type);
2016-09-17 14:21:48 +00:00
2016-09-30 05:21:33 +00:00
char *dir_get_ptr(enum rarch_dir_type type);
2016-09-17 14:10:49 +00:00
2016-09-30 05:11:52 +00:00
const char *dir_get(enum rarch_dir_type type);
2016-09-30 05:15:30 +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