Turn some functions to non-static, as preparation for scan rework.

This commit is contained in:
zoltanvb 2026-01-01 19:42:11 +01:00 committed by Eric Warmenhoven
parent 3f35d2cf17
commit 1ad1552702
2 changed files with 11 additions and 2 deletions

View File

@ -1125,7 +1125,7 @@ error:
* 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)
@ -1210,7 +1210,7 @@ error:
* 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)

View File

@ -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