aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlaylistState.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/PlaylistState.hxx')
-rw-r--r--src/PlaylistState.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/PlaylistState.hxx b/src/PlaylistState.hxx
index 7e9944789..339ac1061 100644
--- a/src/PlaylistState.hxx
+++ b/src/PlaylistState.hxx
@@ -32,12 +32,12 @@ struct player_control;
class TextFile;
void
-playlist_state_save(FILE *fp, const struct playlist *playlist,
- struct player_control *pc);
+playlist_state_save(FILE *fp, const struct playlist &playlist,
+ player_control &pc);
bool
playlist_state_restore(const char *line, TextFile &file,
- struct playlist *playlist, struct player_control *pc);
+ struct playlist &playlist, player_control &pc);
/**
* Generates a hash number for the current state of the playlist and
@@ -46,7 +46,7 @@ playlist_state_restore(const char *line, TextFile &file,
* be saved.
*/
unsigned
-playlist_state_get_hash(const struct playlist *playlist,
- struct player_control *pc);
+playlist_state_get_hash(const struct playlist &playlist,
+ player_control &c);
#endif