summaryrefslogtreecommitdiff
path: root/libmediaart/cache.h
diff options
context:
space:
mode:
authorMartyn Russell <martyn@lanedo.com>2013-08-15 16:06:32 +0100
committerMartyn Russell <martyn@lanedo.com>2013-08-15 17:28:28 +0100
commit6f6815b670d259ba0d74fdbe47b25c8b99e28d1c (patch)
tree37bb177292759c986e7373300c51ef3b31d9419b /libmediaart/cache.h
parent63b1ebbb0b8cafd928ebee5ad56504e0273529ef (diff)
downloadlibmediaart-6f6815b670d259ba0d74fdbe47b25c8b99e28d1c.tar.gz
libmediaart: Removed queue.[ch] and created cache.[ch] more aptly named
Diffstat (limited to 'libmediaart/cache.h')
-rw-r--r--libmediaart/cache.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/libmediaart/cache.h b/libmediaart/cache.h
new file mode 100644
index 0000000..83b7551
--- /dev/null
+++ b/libmediaart/cache.h
@@ -0,0 +1,37 @@
+/*
+ * Copyright (C) 2008, Nokia <ivan.frade@nokia.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+ */
+
+#ifndef __LIBMEDIAART_CACHE_H__
+#define __LIBMEDIAART_CACHE_H__
+
+#include <glib.h>
+
+#if !defined (__LIBMEDIAART_INSIDE__) && !defined (LIBMEDIAART_COMPILATION)
+#error "Only <libmediaart/mediaart.h> must be included directly."
+#endif
+
+G_BEGIN_DECLS
+
+gboolean
+media_art_remove (const gchar *artist,
+ const gchar *album);
+
+G_END_DECLS
+
+#endif /* __LIBMEDIAART_CACHE_H__ */