diff options
Diffstat (limited to '')
-rw-r--r-- | src/DatabasePlaylist.hxx (renamed from src/db_save.h) | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/db_save.h b/src/DatabasePlaylist.hxx index e760ec881..7c6952ffa 100644 --- a/src/db_save.h +++ b/src/DatabasePlaylist.hxx @@ -17,19 +17,18 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef MPD_DB_SAVE_H -#define MPD_DB_SAVE_H +#ifndef MPD_DATABASE_PLAYLIST_HXX +#define MPD_DATABASE_PLAYLIST_HXX -#include <glib.h> -#include <stdbool.h> -#include <stdio.h> +#include "gcc.h" +#include "gerror.h" -struct directory; - -void -db_save_internal(FILE *file, const struct directory *root); +class SongFilter; +gcc_nonnull(1,2) bool -db_load_internal(FILE *file, struct directory *root, GError **error); +search_add_to_playlist(const char *uri, const char *path_utf8, + const SongFilter *filter, + GError **error_r); #endif |