Fiddle with playing.tmpl a bit. not fully translated
[disorder] / server / macros-disorder.h
index bb8950f..371e0f0 100644 (file)
 #define MACROS_DISORDER_H
 
 extern disorder_client *client;
+extern char *error_string;
 void register_disorder_expansions(void);
 
+#define DC_QUEUE 0x0001
+#define DC_PLAYING 0x0002
+#define DC_RECENT 0x0004
+#define DC_VOLUME 0x0008
+#define DC_DIRS 0x0010
+#define DC_FILES 0x0020
+#define DC_NEW 0x0040
+#define DC_RIGHTS 0x0080
+
+static struct queue_entry *queue;
+static struct queue_entry *playing;
+static struct queue_entry *recent;
+
+static int volume_left;
+static int volume_right;
+
+static char **files;
+static int nfiles;
+
+static char **dirs;
+static int ndirs;
+
+static char **new;
+static int nnew;
+
+static rights_type rights;
+
 #endif /* MACROS_DISORDER_H */
 
 /*