(paths.h) Add comments

This commit is contained in:
twinaphex 2016-09-17 16:31:14 +02:00
parent 5a48f32d6b
commit 08862746e7

34
paths.h
View File

@ -29,10 +29,16 @@ enum rarch_content_type
RARCH_CONTENT_IMAGE
};
/* init functions */
void path_init_savefile(void);
/* fill functions */
void path_fill_names(void);
/* set functions */
void path_set_redirect(void);
void path_set_names(const char *path);
@ -49,8 +55,16 @@ void path_set_config(const char *path);
void path_set_config_append(const char *path);
/* get size functions */
size_t path_get_core_size(void);
/* get ptr functions */
char *path_get_core_ptr(void);
/* get functions */
const char *path_get_current_savefile_dir(void);
const char *path_get_core(void);
@ -61,15 +75,7 @@ const char *path_get_config(void);
const char *path_get_config_append(void);
size_t path_get_core_size(void);
bool path_is_core_empty(void);
bool path_is_config_empty(void);
bool path_is_core_options_empty(void);
bool path_is_config_append_empty(void);
/* clear functions */
void path_clear_core(void);
@ -81,6 +87,16 @@ void path_clear_config_append(void);
void path_clear_all(void);
/* is functions */
bool path_is_core_empty(void);
bool path_is_config_empty(void);
bool path_is_core_options_empty(void);
bool path_is_config_append_empty(void);
enum rarch_content_type path_is_media_type(const char *path);
RETRO_END_DECLS