aboutsummaryrefslogtreecommitdiffstats
path: root/src/song_print.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-08 10:49:11 +0200
committerMax Kellermann <max@duempel.org>2008-10-08 10:49:11 +0200
commitd562ba5fbbe117585eaade40a8e9c6ef1bf7ca1f (patch)
tree1e82f7b4854c5d15c4ab59c48120da02e4b41be9 /src/song_print.h
parent25f67da58c671885c86ecfd991f28ec82b6ce1e2 (diff)
downloadmpd-d562ba5fbbe117585eaade40a8e9c6ef1bf7ca1f.tar.gz
mpd-d562ba5fbbe117585eaade40a8e9c6ef1bf7ca1f.tar.xz
mpd-d562ba5fbbe117585eaade40a8e9c6ef1bf7ca1f.zip
song: converted typedef Song to struct song
Again, a data type which can be forward-declared.
Diffstat (limited to 'src/song_print.h')
-rw-r--r--src/song_print.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/song_print.h b/src/song_print.h
index 78537f064..85fbcf036 100644
--- a/src/song_print.h
+++ b/src/song_print.h
@@ -19,14 +19,16 @@
#ifndef SONG_PRINT_H
#define SONG_PRINT_H
-#include "song.h"
-
+struct client;
+struct song;
struct songvec;
-int song_print_info(struct client *client, Song * song);
+int
+song_print_info(struct client *client, struct song *song);
int songvec_print(struct client *client, const struct songvec *sv);
-void song_print_url(struct client *client, Song * song);
+void
+song_print_url(struct client *client, struct song *song);
#endif