diff options
Diffstat (limited to 'src/PlaylistSong.hxx')
-rw-r--r-- | src/PlaylistSong.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/PlaylistSong.hxx b/src/PlaylistSong.hxx index 117ee1338..68c99c4ec 100644 --- a/src/PlaylistSong.hxx +++ b/src/PlaylistSong.hxx @@ -20,6 +20,8 @@ #ifndef MPD_PLAYLIST_SONG_HXX #define MPD_PLAYLIST_SONG_HXX +struct Song; + /** * Verifies the song, returns NULL if it is unsafe. Translate the * song to a new song object within the database, if it is a local @@ -28,8 +30,8 @@ * @param secure if true, then local files are only allowed if they * are relative to base_uri */ -struct song * -playlist_check_translate_song(struct song *song, const char *base_uri, +Song * +playlist_check_translate_song(Song *song, const char *base_uri, bool secure); #endif |