Commit ee7369a8 authored by Avuton Olrich's avatar Avuton Olrich Committed by Max Kellermann

queue_print: queue_print_song_info() is not necessry for export.

parent 68a4bb90
...@@ -24,7 +24,15 @@ ...@@ -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)
{ {
......
...@@ -32,18 +32,6 @@ struct queue; ...@@ -32,18 +32,6 @@ struct queue;
struct locate_item_list; struct locate_item_list;
void 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
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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment