libpurple/image-store.c

changeset 35803
caa6f35efd7a
child 35804
e97d93132751
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libpurple/image-store.c	Wed Apr 09 20:20:21 2014 +0200
@@ -0,0 +1,56 @@
+/* purple
+ *
+ * Purple is the legal property of its developers, whose names are too numerous
+ * to list here.  Please refer to the COPYRIGHT file distributed with this
+ * source distribution.
+ *
+ * This program 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; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
+ */
+
+#include "image-store.h"
+
+guint
+purple_image_store_add(PurpleImage *image)
+{
+	return 0;
+}
+
+guint
+purple_image_store_add_weak(PurpleImage *image)
+{
+	return 0;
+}
+
+guint
+purple_image_store_add_temporary(PurpleImage *image)
+{
+	return 0;
+}
+
+PurpleImage *
+purple_image_store_get(guint id)
+{
+	return NULL;
+}
+
+void
+_purple_image_store_init(void)
+{
+}
+
+void
+_purple_image_store_uninit(void)
+{
+}

mercurial