From 49b84f92293e2cfc7966dc0f8b50b24c52061b9d Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 8 Oct 2011 14:33:41 +0200 Subject: db_print: print absolute URI of playlist entries The protocol mandates that playlist URIs are absolute (i.e. full URI relative to the music directory, not relative to the parent directory). This adds the parameter "directory" to the "playlist" visitor method. --- src/db_visitor.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/db_visitor.h') diff --git a/src/db_visitor.h b/src/db_visitor.h index f68054ec2..6b90c1868 100644 --- a/src/db_visitor.h +++ b/src/db_visitor.h @@ -43,9 +43,11 @@ struct db_visitor { /** * Visit a playlist. Optional method. * + * @param directory the directory the playlist resides in * @return true to continue the operation, false on error (set error_r) */ - bool (*playlist)(const struct playlist_metadata *playlist, void *ctx, + bool (*playlist)(const struct playlist_metadata *playlist, + const struct directory *directory, void *ctx, GError **error_r); }; -- cgit v1.2.3