diff options
author | Max Kellermann <max@duempel.org> | 2013-01-04 22:42:05 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-05 02:43:00 +0100 |
commit | d536944beb783ec098aa6215fc94d8e60cfd310d (patch) | |
tree | b86702e5d0142cfe3c8bb22a9a4f8ea2034cb51b /src/StateFile.hxx | |
parent | 1a8ef3cdab39234e91fe9d91dad2ae004e4537dc (diff) |
Partition: new class, container for Playlist and PlayerControl
This is the beginning of multi-player support. There will be support
for multiple Partition objects in one MPD process.
Diffstat (limited to 'src/StateFile.hxx')
-rw-r--r-- | src/StateFile.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/StateFile.hxx b/src/StateFile.hxx index 77629aba9..35269fe40 100644 --- a/src/StateFile.hxx +++ b/src/StateFile.hxx @@ -20,13 +20,13 @@ #ifndef MPD_STATE_FILE_HXX #define MPD_STATE_FILE_HXX -struct player_control; +struct Partition; void -state_file_init(const char *path, struct player_control *pc); +state_file_init(const char *path, Partition &partition); void -state_file_finish(struct player_control *pc); +state_file_finish(Partition &partition); void write_state_file(void); |