diff options
Diffstat (limited to '')
-rw-r--r-- | src/queue_print.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/queue_print.h b/src/queue_print.h index c67caff62..8ec7ff0fa 100644 --- a/src/queue_print.h +++ b/src/queue_print.h @@ -33,6 +33,14 @@ 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, unsigned start, unsigned end); |