aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-folder-utils.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-05-18 07:50:33 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-05-18 21:25:59 +0800
commitf0a011f941bab3f6ac7228be4e1bec86a0de0d2a (patch)
treed5c64c9fc9922775171aa623223c0666bd833e64 /mail/e-mail-folder-utils.h
parentb3b917365ff2e813df0503e94267f2cb3bab4255 (diff)
downloadgsoc2013-evolution-f0a011f941bab3f6ac7228be4e1bec86a0de0d2a.tar
gsoc2013-evolution-f0a011f941bab3f6ac7228be4e1bec86a0de0d2a.tar.gz
gsoc2013-evolution-f0a011f941bab3f6ac7228be4e1bec86a0de0d2a.tar.bz2
gsoc2013-evolution-f0a011f941bab3f6ac7228be4e1bec86a0de0d2a.tar.lz
gsoc2013-evolution-f0a011f941bab3f6ac7228be4e1bec86a0de0d2a.tar.xz
gsoc2013-evolution-f0a011f941bab3f6ac7228be4e1bec86a0de0d2a.tar.zst
gsoc2013-evolution-f0a011f941bab3f6ac7228be4e1bec86a0de0d2a.zip
Remove mail_save_messages().
Use e_mail_folder_save_messages() instead.
Diffstat (limited to 'mail/e-mail-folder-utils.h')
-rw-r--r--mail/e-mail-folder-utils.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/mail/e-mail-folder-utils.h b/mail/e-mail-folder-utils.h
index f526c3273b..5b178f4a90 100644
--- a/mail/e-mail-folder-utils.h
+++ b/mail/e-mail-folder-utils.h
@@ -114,6 +114,24 @@ gboolean e_mail_folder_remove_attachments_finish
GAsyncResult *result,
GError **error);
+gboolean e_mail_folder_save_messages_sync
+ (CamelFolder *folder,
+ GPtrArray *message_uids,
+ GFile *destination,
+ GCancellable *cancellable,
+ GError **error);
+void e_mail_folder_save_messages (CamelFolder *folder,
+ GPtrArray *message_uids,
+ GFile *destination,
+ gint io_priority,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+gboolean e_mail_folder_save_messages_finish
+ (CamelFolder *folder,
+ GAsyncResult *result,
+ GError **error);
+
gchar * e_mail_folder_uri_build (CamelStore *store,
const gchar *folder_name);
gboolean e_mail_folder_uri_parse (CamelSession *session,