diff options
author | Max Kellermann <max@duempel.org> | 2009-02-04 18:52:39 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-04 18:52:39 +0100 |
commit | 1720c7090dc3d590ffe1b5175e175143c09266f8 (patch) | |
tree | f08f582d429906f5959fad88933205421c606230 /src/Makefile.am | |
parent | e27a665b8996dea78a0aebc32e68ffce6c3c239b (diff) | |
download | mpd-1720c7090dc3d590ffe1b5175e175143c09266f8.tar.gz mpd-1720c7090dc3d590ffe1b5175e175143c09266f8.tar.xz mpd-1720c7090dc3d590ffe1b5175e175143c09266f8.zip |
playlist: moved code to playlist_state.c
Moved everything related to saving or loading the playlist from/to the
state file to playlist_state.c.
Diffstat (limited to '')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index de9c99f1f..b5657510b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -96,6 +96,7 @@ mpd_headers = \ playlist.h \ playlist_print.h \ playlist_save.h \ + playlist_state.h \ queue.h \ queue_print.h \ queue_save.h \ @@ -183,6 +184,7 @@ mpd_SOURCES = \ playlist.c \ playlist_print.c \ playlist_save.c \ + playlist_state.c \ queue.c \ queue_print.c \ queue_save.c \ |