Code

Use screen_status_printf() instead of screen_status_message().
[ncmpc.git] / options.h
2 #define MPD_HOST_ENV "MPD_HOST"
3 #define MPD_PORT_ENV "MPD_PORT"
6 typedef struct 
7 {
8   char *host;
9   int   port;
10   int   reconnect;
11   int   debug;
13 } options_t;
15 void options_init(void);
16 options_t *options_parse(int argc, const char **argv);
17 options_t *get_options(void);