Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions manual_content_scan.c
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ struct string_list *manual_content_scan_get_content_list(
* file path for use in playlists - i.e. handles
* identification of content *inside* archive files.
* Returns false if specified content is invalid. */
static bool manual_content_scan_get_playlist_content_path(
bool manual_content_scan_get_playlist_content_path(
manual_content_scan_task_config_t *task_config,
const char *content_path, int content_type,
char *s, size_t len)
Expand Down Expand Up @@ -1210,7 +1210,7 @@ static bool manual_content_scan_get_playlist_content_path(
* of content file name in an attempt to find a
* valid 'description' string.
* Returns false if specified content is invalid. */
static bool manual_content_scan_get_playlist_content_label(
bool manual_content_scan_get_playlist_content_label(
const char *content_path, logiqx_dat_t *dat_file,
bool filter_dat_content,
char *s, size_t len)
Expand Down
9 changes: 9 additions & 0 deletions manual_content_scan.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,15 @@ void manual_content_scan_add_content_to_playlist(
playlist_t *playlist, const char *content_path,
int content_type, logiqx_dat_t *dat_file);

bool manual_content_scan_get_playlist_content_label(
const char *content_path, logiqx_dat_t *dat_file,
bool filter_dat_content,
char *s, size_t len);
bool manual_content_scan_get_playlist_content_path(
manual_content_scan_task_config_t *task_config,
const char *content_path, int content_type,
char *s, size_t len);

RETRO_END_DECLS

#endif
Loading