aboutsummaryrefslogblamecommitdiffstats
path: root/src/options.h
blob: d858b709e0a4239a1ecccb8ccbd92f6576392108 (plain) (tree)
1
2
3
4
5
6
7
8
9



                               


               

                 

                    

                      
                           
                     
                         
             
                       
                    
                    
                  
                       


                     
                                  



                         


                               
                        
                       
 

            


                              
                                                      
#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 **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 show_splash;

} options_t;

extern options_t options;

options_t *options_init(void);
options_t *options_parse(int argc, const char **argv);