aboutsummaryrefslogtreecommitdiff
path: root/src/song.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-08-08 20:12:20 +0200
committerMax Kellermann <max@duempel.org>2012-08-08 21:08:37 +0200
commit050ba302cb5e5a813a4b01785789b2e327491a49 (patch)
tree30c521145ec2fef20fdcf7cfcedc5cc3bcd169f5 /src/song.h
parentc1f90a99f4b33b3b2c05d051f19bd7ed3472c5ff (diff)
song: use C++ compiler
Diffstat (limited to 'src/song.h')
-rw-r--r--src/song.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/song.h b/src/song.h
index 8b97d45d..441d8729 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