diff options
author | Max Kellermann <max@duempel.org> | 2009-01-25 13:53:16 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-25 13:53:16 +0100 |
commit | 1a59afa388874a2ceadcef2644fa9e08f0a9b828 (patch) | |
tree | 8af86cb92d4d843351e2bd8937369fc3b1812563 /src/conf.h | |
parent | 85f7e964dee606ecd6ceb2da7ce0e85d90c3f5ce (diff) | |
download | mpd-1a59afa388874a2ceadcef2644fa9e08f0a9b828.tar.gz mpd-1a59afa388874a2ceadcef2644fa9e08f0a9b828.tar.xz mpd-1a59afa388874a2ceadcef2644fa9e08f0a9b828.zip |
stored_playlist: moved configuration variables from playlist.c
Don't declare and export variables specific to stored playlists in
playlist.c/playlist.h.
Diffstat (limited to '')
-rw-r--r-- | src/conf.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/conf.h b/src/conf.h index e9c750368..a133198bd 100644 --- a/src/conf.h +++ b/src/conf.h @@ -69,6 +69,9 @@ #define CONF_BOOL_UNSET -1 #define CONF_BOOL_INVALID -2 +#define DEFAULT_PLAYLIST_MAX_LENGTH (1024*16) +#define DEFAULT_PLAYLIST_SAVE_ABSOLUTE_PATHS false + struct block_param { char *name; char *value; |