diff options
author | Max Kellermann <max@duempel.org> | 2013-07-30 20:11:57 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-30 20:19:53 +0200 |
commit | 06f898cc1240a29b293de0e97ad95a4fdc971254 (patch) | |
tree | 001a6d3db039cdc03323f3bfddc13b94bde31ce4 /src/DespotifyUtils.hxx | |
parent | 6a9ab8bc0e2f5d34803513bb2d94d041a607a58c (diff) | |
download | mpd-06f898cc1240a29b293de0e97ad95a4fdc971254.tar.gz mpd-06f898cc1240a29b293de0e97ad95a4fdc971254.tar.xz mpd-06f898cc1240a29b293de0e97ad95a4fdc971254.zip |
tag: convert to C++
Diffstat (limited to 'src/DespotifyUtils.hxx')
-rw-r--r-- | src/DespotifyUtils.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/DespotifyUtils.hxx b/src/DespotifyUtils.hxx index 7e35edc3c..2d78844c0 100644 --- a/src/DespotifyUtils.hxx +++ b/src/DespotifyUtils.hxx @@ -20,6 +20,7 @@ #ifndef MPD_DESPOTIFY_H #define MPD_DESPOTIFY_H +struct Tag; struct despotify_session; struct ds_track; @@ -41,7 +42,8 @@ struct despotify_session *mpd_despotify_get_session(void); * * @return a pointer to the filled in tags structure */ -struct tag *mpd_despotify_tag_from_track(struct ds_track *track); +Tag * +mpd_despotify_tag_from_track(struct ds_track *track); /** * Register a despotify callback. |