blob: f29014cbd19f91fa26beb0aa5b01a6f6e964c35a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#ifndef OPTIONS_H
#define OPTIONS_H
#include <glib.h>
#define MPD_HOST_ENV "MPD_HOST"
#define MPD_PORT_ENV "MPD_PORT"
typedef struct {
char *host;
char *username;
char *password;
char *config_file;
char *key_file;
char *list_format;
char *status_format;
char *xterm_title_format;
char *scroll_sep;
char **screen_list;
char *timedisplay_type;
int port;
int crossfade_time;
int search_mode;
int hide_cursor;
int seek_time;
int lyrics_timeout;
gboolean reconnect;
gboolean debug;
gboolean find_wrap;
gboolean find_show_last_pattern;
gboolean list_wrap;
gboolean auto_center;
gboolean wide_cursor;
gboolean enable_colors;
gboolean audible_bell;
gboolean visible_bell;
gboolean enable_xterm_title;
gboolean enable_mouse;
gboolean scroll;
gboolean visible_bitrate;
gboolean welcome_screen_list;
} options_t;
#ifndef NO_GLOBAL_OPTIONS
extern options_t options;
#endif
options_t *options_init(void);
options_t *options_parse(int argc, const char **argv);
#endif
|