diff options
author | Max Kellermann <max@duempel.org> | 2008-10-02 16:52:25 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-02 16:52:25 +0200 |
commit | 75fa0c73ee4ee2648f587e2eb852316061fc1053 (patch) | |
tree | b2bf54b0bf943cbe518966a281b2808c0c561a72 /src/ncmpc.h | |
parent | b543b982624593ab767d0734b08d053662434380 (diff) | |
download | mpd-75fa0c73ee4ee2648f587e2eb852316061fc1053.tar.gz mpd-75fa0c73ee4ee2648f587e2eb852316061fc1053.tar.xz mpd-75fa0c73ee4ee2648f587e2eb852316061fc1053.zip |
moved default value macros to defaults.h
These macros are only used by options.c and conf.c. Move them to a
common internal header.
Diffstat (limited to 'src/ncmpc.h')
-rw-r--r-- | src/ncmpc.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/ncmpc.h b/src/ncmpc.h index 746bc8beb..e7da71778 100644 --- a/src/ncmpc.h +++ b/src/ncmpc.h @@ -20,15 +20,9 @@ #define YES _("y") #define NO _("n") -/* mpd crossfade time [s] */ -#define DEFAULT_CROSSFADE_TIME 10 - /* welcome message time [s] */ #define SCREEN_WELCOME_TIME 10 -/* screen list */ -#define DEFAULT_SCREEN_LIST "playlist browse" - /* status message time [s] */ #define SCREEN_STATUS_MESSAGE_TIME 3 @@ -45,19 +39,10 @@ /* time before trying to reconnect [ms] */ #define MPD_RECONNECT_TIME 1500 -/* song format - list window */ -#define DEFAULT_LIST_FORMAT "%name%|[%artist% - ]%title%|%shortfile%" #define LIST_FORMAT options.list_format -/* song format - status window */ -#define DEFAULT_STATUS_FORMAT "[%artist% - ]%title%|%shortfile%" #define STATUS_FORMAT options.status_format -#define DEFAULT_LYRICS_TIMEOUT 100 - -#define DEFAULT_SCROLL TRUE -#define DEFAULT_SCROLL_SEP " *** " - void sigstop(void); |