aboutsummaryrefslogtreecommitdiffstats
path: root/src/cue/cue_tag.h
diff options
context:
space:
mode:
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