queue_print: queue_print_song_info() is not necessry for export.

This commit is contained in:
Avuton Olrich 2009-03-29 10:58:26 -07:00 committed by Max Kellermann
parent 68a4bb90da
commit ee7369a8f1
2 changed files with 9 additions and 13 deletions

View File

@ -24,7 +24,15 @@
#include "locate.h" #include "locate.h"
#include "client.h" #include "client.h"
void /**
* Send detailed information about a range of songs in the queue to a
* client.
*
* @param client the client which has requested information
* @param start the index of the first song (including)
* @param end the index of the last song (excluding)
*/
static void
queue_print_song_info(struct client *client, const struct queue *queue, queue_print_song_info(struct client *client, const struct queue *queue,
unsigned position) unsigned position)
{ {

View File

@ -31,18 +31,6 @@ struct client;
struct queue; struct queue;
struct locate_item_list; struct locate_item_list;
void
queue_print_song_info(struct client *client, const struct queue *queue,
unsigned position);
/**
* Send detailed information about a range of songs in the queue to a
* client.
*
* @param client the client which has requested information
* @param start the index of the first song (including)
* @param end the index of the last song (excluding)
*/
void void
queue_print_info(struct client *client, const struct queue *queue, queue_print_info(struct client *client, const struct queue *queue,
unsigned start, unsigned end); unsigned start, unsigned end);