aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-attachment-store.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-11-20 08:15:37 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-11-20 10:45:26 +0800
commit28589a30975f3e68615ea9eb2086d7d251013563 (patch)
tree9c2110ca0d4d6c631f4693ea876b518464802deb /widgets/misc/e-attachment-store.h
parent82e862889dce6540714a90444473454e3ef9c66b (diff)
downloadgsoc2013-evolution-28589a30975f3e68615ea9eb2086d7d251013563.tar
gsoc2013-evolution-28589a30975f3e68615ea9eb2086d7d251013563.tar.gz
gsoc2013-evolution-28589a30975f3e68615ea9eb2086d7d251013563.tar.bz2
gsoc2013-evolution-28589a30975f3e68615ea9eb2086d7d251013563.tar.lz
gsoc2013-evolution-28589a30975f3e68615ea9eb2086d7d251013563.tar.xz
gsoc2013-evolution-28589a30975f3e68615ea9eb2086d7d251013563.tar.zst
gsoc2013-evolution-28589a30975f3e68615ea9eb2086d7d251013563.zip
Add e_attachment_store_load_async().
This is a convenience function for adding multiple attachments to a store and loading them concurrently. Also included: e_attachment_store_load_finish()
Diffstat (limited to 'widgets/misc/e-attachment-store.h')
-rw-r--r--widgets/misc/e-attachment-store.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/widgets/misc/e-attachment-store.h b/widgets/misc/e-attachment-store.h
index efe3e16610..07175f151c 100644
--- a/widgets/misc/e-attachment-store.h
+++ b/widgets/misc/e-attachment-store.h
@@ -109,22 +109,20 @@ GFile * e_attachment_store_run_save_dialog
GtkWindow *parent);
/* Asynchronous Operations */
-void e_attachment_store_add_mime_parts_async
+void e_attachment_store_get_uris_async
(EAttachmentStore *store,
- GList *mime_parts,
+ GList *attachment_list,
GAsyncReadyCallback callback,
gpointer user_data);
-gboolean e_attachment_store_add_mime_parts_finish
+gchar ** e_attachment_store_get_uris_finish
(EAttachmentStore *store,
GAsyncResult *result,
GError **error);
-void e_attachment_store_get_uris_async
- (EAttachmentStore *store,
+void e_attachment_store_load_async (EAttachmentStore *store,
GList *attachment_list,
GAsyncReadyCallback callback,
gpointer user_data);
-gchar ** e_attachment_store_get_uris_finish
- (EAttachmentStore *store,
+gboolean e_attachment_store_load_finish (EAttachmentStore *store,
GAsyncResult *result,
GError **error);
void e_attachment_store_save_async (EAttachmentStore *store,