diff src/libaudtag/audtag.h @ 4887:0ddbd0025174 default tip

added libaudtag. (not used yet.)
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Wed, 05 May 2010 18:26:06 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/libaudtag/audtag.h	Wed May 05 18:26:06 2010 +0900
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2009 Paula Stanciu
+ *
+ * This file is part of Audacious.
+ *
+ * Audacious is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, version 3 of the License.
+ *
+ * Audacious is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * Audacious. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * The Audacious team does not consider modular code linking to Audacious or
+ * using our public API to be a derived work.
+ */
+
+/* External Interface of the tagging library */
+
+#ifndef AUDTAG_H
+#define AUDTAG_H
+
+G_BEGIN_DECLS
+
+#include <glib.h>
+#include <mowgli.h>
+#include "audlegacy/tuple.h"
+#include "audlegacy/vfs.h"
+
+void tag_init(void);
+void tag_terminate(void);
+
+gboolean tag_tuple_read (Tuple * tuple, VFSFile *fd);
+gboolean tag_tuple_write_to_file(Tuple *tuple, VFSFile *fd);
+
+G_END_DECLS
+#endif /* AUDTAG_H */
+
+