Skip to content

Commit 1ad1552

Browse files
zoltanvbwarmenhoven
authored andcommitted
Turn some functions to non-static, as preparation for scan rework.
1 parent 3f35d2c commit 1ad1552

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

manual_content_scan.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1125,7 +1125,7 @@ struct string_list *manual_content_scan_get_content_list(
11251125
* file path for use in playlists - i.e. handles
11261126
* identification of content *inside* archive files.
11271127
* Returns false if specified content is invalid. */
1128-
static bool manual_content_scan_get_playlist_content_path(
1128+
bool manual_content_scan_get_playlist_content_path(
11291129
manual_content_scan_task_config_t *task_config,
11301130
const char *content_path, int content_type,
11311131
char *s, size_t len)
@@ -1210,7 +1210,7 @@ static bool manual_content_scan_get_playlist_content_path(
12101210
* of content file name in an attempt to find a
12111211
* valid 'description' string.
12121212
* Returns false if specified content is invalid. */
1213-
static bool manual_content_scan_get_playlist_content_label(
1213+
bool manual_content_scan_get_playlist_content_label(
12141214
const char *content_path, logiqx_dat_t *dat_file,
12151215
bool filter_dat_content,
12161216
char *s, size_t len)

manual_content_scan.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,15 @@ void manual_content_scan_add_content_to_playlist(
273273
playlist_t *playlist, const char *content_path,
274274
int content_type, logiqx_dat_t *dat_file);
275275

276+
bool manual_content_scan_get_playlist_content_label(
277+
const char *content_path, logiqx_dat_t *dat_file,
278+
bool filter_dat_content,
279+
char *s, size_t len);
280+
bool manual_content_scan_get_playlist_content_path(
281+
manual_content_scan_task_config_t *task_config,
282+
const char *content_path, int content_type,
283+
char *s, size_t len);
284+
276285
RETRO_END_DECLS
277286

278287
#endif

0 commit comments

Comments
 (0)