diff Plugins/General/scrobbler/queue.h @ 1236:fc478bfe6fe6 trunk

[svn] - disconnect the scrobbler client from metatag logically
author nenolod
date Wed, 14 Jun 2006 22:30:04 -0700
parents cc1969408403
children
line wrap: on
line diff
--- a/Plugins/General/scrobbler/queue.h	Wed Jun 14 22:17:20 2006 -0700
+++ b/Plugins/General/scrobbler/queue.h	Wed Jun 14 22:30:04 2006 -0700
@@ -1,6 +1,8 @@
 #ifndef QUEUE_H
 #define QUEUE_H 1
 
+#include "libaudacious/titlestring.h"
+
 #define I_ARTIST(i) i->artist
 #define I_TITLE(i) i->title
 #define I_TIME(i) i->utctime
@@ -18,7 +20,7 @@
 	int numtries;
 	void *next;
 } item_t;
-void q_put(metatag_t *, int);
+void q_put(TitleInput *, int);
 item_t *q_put2(char *, char *, char *, char *, char *, char *);
 item_t *q_peek(void);
 item_t *q_peekall(int);