aboutsummaryrefslogtreecommitdiff
path: root/src/playlist_global.c
Commit message (Collapse)AuthorAge
* copyright year 2011Max Kellermann2011-01-29
|
* player_control: removed the global variable "pc"Max Kellermann2011-01-10
| | | | | | | 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.
* Update copyright notices.Avuton Olrich2009-12-31
|
* include config.h in all sourcesMax Kellermann2009-11-12
| | | | | | After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
* playlist: CamelCaseIsBadCourtney Cavin2009-07-28
| | | | Renamed all playlist functions to non-CamelCase.
* playlist: no CamelCaseMax Kellermann2009-07-14
|
* playlist: removed {save,read}PlaylistState()Max Kellermann2009-07-14
| | | | | | Those were only wrappers for playlist_state_{save,restore}(). Since sf_callbacks has been removed, we can call the latter functions directly.
* all: Update copyright header.Avuton Olrich2009-03-13
| | | | | | | | 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: renamed global "playlist" variable to "g_playlist"Max Kellermann2009-02-04
Export the "g_playlist" variable, and pass it to all playlist functions. This way, we can split playlist.c easier into separate parts. The code which initializes the singleton variable is moved to playlist_global.c.