diff options
Diffstat (limited to '')
-rw-r--r-- | src/song_print.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/song_print.h b/src/song_print.h index bbc034248..bc7560e88 100644 --- a/src/song_print.h +++ b/src/song_print.h @@ -21,9 +21,11 @@ #include "song.h" +struct songvec; + int printSongInfo(struct client *client, Song * song); -int printSongInfoFromList(struct client *client, SongList * list); +int songvec_print(struct client *client, const struct songvec *sv); void printSongUrl(struct client *client, Song * song); |