aboutsummaryrefslogtreecommitdiffstats
path: root/src/cue/cue_tag.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-04-01 15:36:24 +0200
committerMax Kellermann <max@duempel.org>2009-04-01 15:36:24 +0200
commita3823c7657e486b371577e669c3171becb1678b7 (patch)
tree7e04d76f368c29c4cdbb3b12017d16664b3a335a /src/cue/cue_tag.h
parent85cecbddde93aa4bcb7821473ea95ccad150ce4c (diff)
parent4bfbdfe5c522011a695c804cfccf190eb4500e9a (diff)
downloadmpd-a3823c7657e486b371577e669c3171becb1678b7.tar.gz
mpd-a3823c7657e486b371577e669c3171becb1678b7.tar.xz
mpd-a3823c7657e486b371577e669c3171becb1678b7.zip
Merge branch 'master' of git://git.musicpd.org/jrk/mpd
Diffstat (limited to 'src/cue/cue_tag.h')
-rw-r--r--src/cue/cue_tag.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/cue/cue_tag.h b/src/cue/cue_tag.h
new file mode 100644
index 000000000..adc4c466e
--- /dev/null
+++ b/src/cue/cue_tag.h
@@ -0,0 +1,20 @@
+#ifndef MPD_CUE_TAG_H
+#define MPD_CUE_TAG_H
+
+#include "config.h"
+
+#ifdef HAVE_CUE /* libcue */
+
+#include <libcue/libcue.h>
+#include "../tag.h"
+
+struct tag*
+cue_tag_file( FILE*,
+ const unsigned int);
+
+struct tag*
+cue_tag_string( char*,
+ const unsigned int);
+
+#endif /* libcue */
+#endif