queue: queue_generate_id() is not necessary for export.

This commit is contained in:
Avuton Olrich 2009-03-29 10:58:24 -07:00 committed by Max Kellermann
parent ed96db3fae
commit 68a4bb90da
2 changed files with 4 additions and 7 deletions

View File

@ -20,7 +20,10 @@
#include "queue.h"
#include "song.h"
unsigned
/**
* Generate a non-existing id number.
*/
static unsigned
queue_generate_id(const struct queue *queue)
{
static unsigned cur = (unsigned)-1;

View File

@ -229,12 +229,6 @@ queue_init(struct queue *queue, unsigned max_length);
void
queue_finish(struct queue *queue);
/**
* Generate a non-existing id number.
*/
unsigned
queue_generate_id(const struct queue *queue);
/**
* Returns the order number following the specified one. This takes
* end of queue and "repeat" mode into account.