Turn content_push_to_history_playlist to static function
This commit is contained in:
parent
9b421948e4
commit
4a0334b4fa
|
@ -44,9 +44,6 @@ typedef struct content_ctx_info
|
||||||
environment_get_t environ_get; /* Function passed for environment_get function */
|
environment_get_t environ_get; /* Function passed for environment_get function */
|
||||||
} content_ctx_info_t;
|
} content_ctx_info_t;
|
||||||
|
|
||||||
void content_push_to_history_playlist(bool do_push,
|
|
||||||
const char *path, void *data);
|
|
||||||
|
|
||||||
/* Load a RAM state from disk to memory. */
|
/* Load a RAM state from disk to memory. */
|
||||||
bool content_load_ram_file(ram_type_t *ram);
|
bool content_load_ram_file(ram_type_t *ram);
|
||||||
|
|
||||||
|
|
|
@ -776,7 +776,7 @@ static void check_default_dirs(void)
|
||||||
check_defaults_dir_create_dir(g_defaults.dir.thumbnails);
|
check_defaults_dir_create_dir(g_defaults.dir.thumbnails);
|
||||||
}
|
}
|
||||||
|
|
||||||
void content_push_to_history_playlist(bool do_push,
|
static void content_push_to_history_playlist(bool do_push,
|
||||||
const char *path, void *data)
|
const char *path, void *data)
|
||||||
{
|
{
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
|
|
Loading…
Reference in New Issue