diff options
author | Max Kellermann <max@duempel.org> | 2012-08-08 20:12:20 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-08-08 21:08:37 +0200 |
commit | 050ba302cb5e5a813a4b01785789b2e327491a49 (patch) | |
tree | 30c521145ec2fef20fdcf7cfcedc5cc3bcd169f5 /src/song.h | |
parent | c1f90a99f4b33b3b2c05d051f19bd7ed3472c5ff (diff) | |
download | mpd-050ba302cb5e5a813a4b01785789b2e327491a49.tar.gz mpd-050ba302cb5e5a813a4b01785789b2e327491a49.tar.xz mpd-050ba302cb5e5a813a4b01785789b2e327491a49.zip |
song: use C++ compiler
Diffstat (limited to 'src/song.h')
-rw-r--r-- | src/song.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/song.h b/src/song.h index 8b97d45d0..441d8729b 100644 --- a/src/song.h +++ b/src/song.h @@ -58,6 +58,8 @@ struct song { char uri[sizeof(int)]; }; +G_BEGIN_DECLS + /** allocate a new song with a remote URL */ struct song * song_remote_new(const char *uri); @@ -117,4 +119,6 @@ song_is_file(const struct song *song) return song_in_database(song) || song->uri[0] == '/'; } +G_END_DECLS + #endif |