make unit of all temperatures selectable
[monky] / src / mpd.h
index e728775..b06871f 100644 (file)
--- a/src/mpd.h
+++ b/src/mpd.h
@@ -1,10 +1,6 @@
 #ifndef MPD_H_
 #define MPD_H_
 
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-
 #include "libmpdclient.h"
 #include "timed_thread.h"
 
@@ -18,6 +14,7 @@ struct mpd_s {
        char *track;
        char *name;
        char *file;
+       int is_playing;
        int volume;
        unsigned int port;
        char host[128];
@@ -26,7 +23,6 @@ struct mpd_s {
        int bitrate;
        int length;
        int elapsed;
-       int max_title_len;              /* e.g. ${mpd_title 50} */
        mpd_Connection *conn;
        timed_thread *timed_thread;
 };