diff options
author | Max Kellermann <max@duempel.org> | 2011-09-11 07:41:25 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-09-11 07:57:50 +0200 |
commit | ca419c84b83d017c3e4309e22f92273500197eea (patch) | |
tree | 495a1a68c3bc4b0d1fbd2efb30985d31e14fe18d /src/playlist_save.h | |
parent | aede71b1dcda4dacc566f11d47188c85a3ee8dd2 (diff) | |
download | mpd-ca419c84b83d017c3e4309e22f92273500197eea.tar.gz mpd-ca419c84b83d017c3e4309e22f92273500197eea.tar.xz mpd-ca419c84b83d017c3e4309e22f92273500197eea.zip |
stored_playlist: return GError, code is playlist_result
Improve error reporting and handling. command.c gets the new function
print_error(), which sends a GError to the client.
Diffstat (limited to 'src/playlist_save.h')
-rw-r--r-- | src/playlist_save.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/playlist_save.h b/src/playlist_save.h index fcee9e8bf..f8bfb8355 100644 --- a/src/playlist_save.h +++ b/src/playlist_save.h @@ -22,6 +22,7 @@ #include "playlist_error.h" +#include <stdbool.h> #include <stdio.h> struct song; @@ -51,8 +52,8 @@ spl_save_playlist(const char *name_utf8, const struct playlist *playlist); * Loads a stored playlist file, and append all songs to the global * playlist. */ -enum playlist_result +bool playlist_load_spl(struct playlist *playlist, struct player_control *pc, - const char *name_utf8); + const char *name_utf8, GError **error_r); #endif |