aboutsummaryrefslogtreecommitdiff
path: root/src/song.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-02-12 19:47:22 +0100
committerMax Kellermann <max@duempel.org>2012-02-12 19:48:02 +0100
commitdf563db29406ee47a9d45ae5a01ef03cc52be478 (patch)
treee9664f137629756974427f5d144bc68437e0d301 /src/song.h
parent01b0d9eb975278a3f8c06ca7de01b8d80519df4a (diff)
song: add function song_replace_uri()
Diffstat (limited to 'src/song.h')
-rw-r--r--src/song.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/song.h b/src/song.h
index 95cc2eb8..8b97d45d 100644
--- a/src/song.h
+++ b/src/song.h
@@ -74,6 +74,15 @@ song_file_new(const char *path, struct directory *parent);
struct song *
song_file_load(const char *path, struct directory *parent);
+/**
+ * Replaces the URI of a song object. The given song object is
+ * destroyed, and a newly allocated one is returned. It does not
+ * update the reference within the parent directory; the caller is
+ * responsible for doing that.
+ */
+struct song *
+song_replace_uri(struct song *song, const char *uri);
+
void
song_free(struct song *song);