diff options
Diffstat (limited to 'src/playlist_any.h')
-rw-r--r-- | src/playlist_any.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/playlist_any.h b/src/playlist_any.h index 7c13df718..310913de9 100644 --- a/src/playlist_any.h +++ b/src/playlist_any.h @@ -20,7 +20,7 @@ #ifndef MPD_PLAYLIST_ANY_H #define MPD_PLAYLIST_ANY_H -#include <stdbool.h> +#include <glib.h> struct playlist_provider; struct input_stream; @@ -35,6 +35,7 @@ struct input_stream; * freed */ struct playlist_provider * -playlist_open_any(const char *uri, struct input_stream **is_r); +playlist_open_any(const char *uri, GMutex *mutex, GCond *cond, + struct input_stream **is_r); #endif |