aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist_state.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* copyright year 2011Max Kellermann2011-01-291-1/+1
|
* player_control: removed the global variable "pc"Max Kellermann2011-01-101-3/+6
| | | | | | | Allocate a player_control object where needed, and pass it around. Each "client" object is associated with a "player_control" instance. This prepares multi-player support.
* state_file: use the text_file libraryMax Kellermann2010-07-251-1/+3
| | | | Don't use a large stack buffer.
* Update copyright notices.Avuton Olrich2009-12-311-1/+1
|
* state_file: save only if something has changedMax Kellermann2009-10-081-0/+9
| | | | | | If nothing has changed since the last save, don't save the state file. Saving will spin up the hard drive, which is undesirable on hosts where MPD is idling in background.
* state_file: don't rewind the stream while reading the state fileMax Kellermann2009-07-151-2/+3
| | | | | | Parse the state file line by line, let each subsystem probe a line. Only the playlist_state code gets the FILE pointer to read the following lines.
* all: Update copyright header.Avuton Olrich2009-03-131-3/+4
| | | | | | | | This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
* playlist: moved code to playlist_state.cMax Kellermann2009-02-041-0/+37
Moved everything related to saving or loading the playlist from/to the state file to playlist_state.c.