diff options
Diffstat (limited to 'src/stored_playlist.h')
-rw-r--r-- | src/stored_playlist.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/stored_playlist.h b/src/stored_playlist.h index 4841ca80e..8ba756853 100644 --- a/src/stored_playlist.h +++ b/src/stored_playlist.h @@ -19,7 +19,6 @@ #ifndef MPD_STORED_PLAYLIST_H #define MPD_STORED_PLAYLIST_H -#include "list.h" #include "playlist.h" #include <glib.h> @@ -42,9 +41,12 @@ spl_list(void); void spl_list_free(GPtrArray *list); -List * +GPtrArray * spl_load(const char *utf8path); +void +spl_free(GPtrArray *list); + enum playlist_result spl_move_index(const char *utf8path, unsigned src, unsigned dest); |