X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/f08c0859513712f805da09ae1e1bcefb436b4096..699517afce8942f7f43952adfe242d7a0c09f2d0:/lib/queue.h?ds=sidebyside diff --git a/lib/queue.h b/lib/queue.h index 3ae4c26..e466c95 100644 --- a/lib/queue.h +++ b/lib/queue.h @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2006 Richard Kettlewell + * Copyright (C) 2004-2008 Richard Kettlewell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -21,6 +21,9 @@ #ifndef QUEUE_H #define QUEUE_H +#include + + enum playing_state { playing_failed, /* failed to play */ playing_isscratch, /* this is a scratch track */ @@ -54,6 +57,7 @@ struct queue_entry { const struct plugin *pl; /* plugin that's playing this track */ void *data; /* player data */ long sofar; /* how much played so far */ + int prepared; /* true when connected to speaker */ /* For DISORDER_PLAYER_PAUSES only: */ time_t lastpaused, lastresumed; /* when last paused/resumed, or 0 */ long uptopause; /* how much played up to last pause */ @@ -61,6 +65,9 @@ struct queue_entry { struct queuelike *ql; /* owning queue */ }; +void queue_insert_entry(struct queue_entry *b, struct queue_entry *n); +void queue_delete_entry(struct queue_entry *node); + int queue_unmarshall(struct queue_entry *q, const char *s, void (*error_handler)(const char *, void *), void *u);