playlist_print: added API documentation

This commit is contained in:
Max Kellermann 2009-02-04 21:09:37 +01:00
parent 60bec77664
commit 080dd095a5

View File

@ -23,6 +23,14 @@
struct client;
/**
* Send the stored playlist to the client.
*
* @param client the client which requested the playlist
* @param name_utf8 the name of the stored playlist in UTF-8 encoding
* @param detail true if all details should be printed
* @return true on success, false if the playlist does not exist
*/
bool
spl_print(struct client *client, const char *name_utf8, bool detail);