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/dbUtils.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 '')
-rw-r--r-- | src/dbUtils.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/dbUtils.h b/src/dbUtils.h index 95c881134..65349a32f 100644 --- a/src/dbUtils.h +++ b/src/dbUtils.h @@ -20,13 +20,18 @@ #ifndef MPD_DB_UTILS_H #define MPD_DB_UTILS_H +#include <glib.h> +#include <stdbool.h> + struct locate_item_list; struct player_control; int addAllIn(struct player_control *pc, const char *name); -int addAllInToStoredPlaylist(const char *name, const char *utf8file); +bool +addAllInToStoredPlaylist(const char *uri_utf8, const char *path_utf8, + GError **error_r); int findAddIn(struct player_control *pc, const char *name, |