diff options
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 |