Mercurial > audlegacy
view 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 source
#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 #define I_LEN(i) i->len #define I_MB(i) i->mb #define I_ALBUM(i) i->album typedef struct { char *artist, *title, *mb, *album, *utctime, len[16]; int numtries; void *next; } item_t; 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); int q_get(void); void q_free(void); int q_len(void); #endif