2008-06-14 18:41:12 +00:00
|
|
|
#ifndef MPD_H_
|
|
|
|
#define MPD_H_
|
|
|
|
|
2008-12-18 12:37:53 +00:00
|
|
|
//#include "conky.h"
|
2008-06-14 18:41:12 +00:00
|
|
|
|
|
|
|
struct mpd_s {
|
|
|
|
char *title;
|
|
|
|
char *artist;
|
|
|
|
char *album;
|
2008-12-18 12:37:53 +00:00
|
|
|
const char *status;
|
|
|
|
const char *random;
|
|
|
|
const char *repeat;
|
2008-06-14 18:41:12 +00:00
|
|
|
char *track;
|
|
|
|
char *name;
|
|
|
|
char *file;
|
2008-10-08 11:44:27 +00:00
|
|
|
int is_playing;
|
2008-06-14 18:41:12 +00:00
|
|
|
int volume;
|
|
|
|
float progress;
|
|
|
|
int bitrate;
|
|
|
|
int length;
|
|
|
|
int elapsed;
|
|
|
|
};
|
|
|
|
|
2008-12-18 12:37:53 +00:00
|
|
|
/* functions for setting the configuration values */
|
|
|
|
void mpd_set_host(const char *);
|
2009-06-14 23:15:04 +00:00
|
|
|
void mpd_set_password(const char *, int);
|
2008-12-18 12:37:53 +00:00
|
|
|
void mpd_clear_password(void);
|
|
|
|
int mpd_set_port(const char *);
|
2008-06-14 18:41:12 +00:00
|
|
|
|
2008-12-18 12:37:53 +00:00
|
|
|
/* text object functions */
|
|
|
|
void init_mpd(void);
|
|
|
|
struct mpd_s *mpd_get_info(void);
|
|
|
|
void free_mpd(void);
|
|
|
|
void update_mpd(void);
|
2008-06-14 18:41:12 +00:00
|
|
|
|
|
|
|
#endif /*MPD_H_*/
|