From 0a0b473765fe5ba43f442e3d12853add3ff51415 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 13 Feb 2012 20:10:19 +0100 Subject: mapper: add mapper_get_music_directory() Shortcut for map_directory_fs(db_get_root()). --- src/mapper.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'src/mapper.h') diff --git a/src/mapper.h b/src/mapper.h index c8dba29c..ed4a60b5 100644 --- a/src/mapper.h +++ b/src/mapper.h @@ -36,12 +36,19 @@ void mapper_init(const char *_music_dir, const char *_playlist_dir); void mapper_finish(void); +G_GNUC_CONST +const char * +mapper_get_music_directory(void); + /** * Returns true if a music directory was configured. */ G_GNUC_CONST -bool -mapper_has_music_directory(void); +static inline bool +mapper_has_music_directory(void) +{ + return mapper_get_music_directory() != NULL; +} /** * If the specified absolute path points inside the music directory, -- cgit v1.2.3