diff options
author | Max Kellermann <max@duempel.org> | 2009-02-04 18:56:41 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-04 18:56:41 +0100 |
commit | 8d3205871cf398c4e187bb0d1ead28c46a25a8c1 (patch) | |
tree | d50a3219a796cff081316d9a31d6bb4f9edc2d2c /src/Makefile.am | |
parent | 1720c7090dc3d590ffe1b5175e175143c09266f8 (diff) | |
download | mpd-8d3205871cf398c4e187bb0d1ead28c46a25a8c1.tar.gz mpd-8d3205871cf398c4e187bb0d1ead28c46a25a8c1.tar.xz mpd-8d3205871cf398c4e187bb0d1ead28c46a25a8c1.zip |
playlist: renamed global "playlist" variable to "g_playlist"
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.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index b5657510b..4b50c3664 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -182,6 +182,7 @@ mpd_SOURCES = \ player_thread.c \ player_control.c \ playlist.c \ + playlist_global.c \ playlist_print.c \ playlist_save.c \ playlist_state.c \ |