diff options
author | Max Kellermann <max@duempel.org> | 2009-01-23 16:35:04 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-23 16:35:04 +0100 |
commit | 349d24986755a9802606c42956129fab3f13fd95 (patch) | |
tree | 382a5dfa4a4a61b5e02f12780d001abf72b9932a /src/Makefile.am | |
parent | 8afe24c1de70b69df58f1724ad5fd02c7af63ecb (diff) | |
download | mpd-349d24986755a9802606c42956129fab3f13fd95.tar.gz mpd-349d24986755a9802606c42956129fab3f13fd95.tar.xz mpd-349d24986755a9802606c42956129fab3f13fd95.zip |
playlist: moved saving/loading code to queue_save.c
Create a new library which saves/loads the queue to/from the state
file.
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 f5738bdf4..e3fac9990 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -95,6 +95,7 @@ mpd_headers = \ playlist_save.h \ queue.h \ queue_print.h \ + queue_save.h \ replay_gain.h \ sig_handlers.h \ song.h \ @@ -181,6 +182,7 @@ mpd_SOURCES = \ playlist_save.c \ queue.c \ queue_print.c \ + queue_save.c \ replay_gain.c \ sig_handlers.c \ song.c \ |