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_error.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_error.h')
-rw-r--r-- | src/playlist_error.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/playlist_error.h b/src/playlist_error.h index 9ecb28e95..ad9c62cf1 100644 --- a/src/playlist_error.h +++ b/src/playlist_error.h @@ -20,6 +20,8 @@ #ifndef MPD_PLAYLIST_ERROR_H #define MPD_PLAYLIST_ERROR_H +#include <glib.h> + enum playlist_result { PLAYLIST_RESULT_SUCCESS, PLAYLIST_RESULT_ERRNO, @@ -34,4 +36,14 @@ enum playlist_result { PLAYLIST_RESULT_DISABLED, }; +/** + * Quark for GError.domain; the code is an enum #playlist_result. + */ +G_GNUC_CONST +static inline GQuark +playlist_quark(void) +{ + return g_quark_from_static_string("playlist"); +} + #endif |