diff options
Diffstat (limited to '')
-rw-r--r-- | src/playlist.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/playlist.h b/src/playlist.h index e50f57bc4..e104a48e2 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -32,6 +32,7 @@ struct client; enum playlist_result { PLAYLIST_RESULT_SUCCESS, PLAYLIST_RESULT_ERRNO, + PLAYLIST_RESULT_DENIED, PLAYLIST_RESULT_NO_SUCH_SONG, PLAYLIST_RESULT_NO_SUCH_LIST, PLAYLIST_RESULT_LIST_EXISTS, @@ -72,6 +73,13 @@ void clearPlaylist(void); int clearStoredPlaylist(const char *utf8file); +/** + * Appends a local file (outside the music database) to the playlist, + * but only if the file's owner is equal to the specified uid. + */ +enum playlist_result +playlist_append_file(const char *path, int uid, int *added_id); + enum playlist_result addToPlaylist(const char *file, int *added_id); int addToStoredPlaylist(const char *file, const char *utf8file); |