cue_tag.h 287 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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