diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-24 03:28:35 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-05-24 03:52:27 +0800 |
commit | 61d1530c76341f1a69fa528071e3a6ffa07ed333 (patch) | |
tree | 3aac375a1dfcbdc7444679331cdf31ff11eb6465 /mail/e-mail-store-utils.h | |
parent | 80212025c5fdb8c736cdc840f5b732b1920fbb62 (diff) | |
download | gsoc2013-evolution-61d1530c76341f1a69fa528071e3a6ffa07ed333.tar.gz gsoc2013-evolution-61d1530c76341f1a69fa528071e3a6ffa07ed333.tar.zst gsoc2013-evolution-61d1530c76341f1a69fa528071e3a6ffa07ed333.zip |
Remove emfu_create_folder_real().
Use e_mail_store_create_folder() instead.
Diffstat (limited to 'mail/e-mail-store-utils.h')
-rw-r--r-- | mail/e-mail-store-utils.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mail/e-mail-store-utils.h b/mail/e-mail-store-utils.h index 7610b82f54..de4484c020 100644 --- a/mail/e-mail-store-utils.h +++ b/mail/e-mail-store-utils.h @@ -25,6 +25,21 @@ G_BEGIN_DECLS +gboolean e_mail_store_create_folder_sync (CamelStore *store, + const gchar *full_name, + GCancellable *cancellable, + GError **error); +void e_mail_store_create_folder (CamelStore *store, + const gchar *full_name, + gint io_priority, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); +gboolean e_mail_store_create_folder_finish + (CamelStore *store, + GAsyncResult *result, + GError **error); + void e_mail_store_go_offline (CamelStore *store, gint io_priority, GCancellable *cancellable, @@ -33,6 +48,7 @@ void e_mail_store_go_offline (CamelStore *store, gboolean e_mail_store_go_offline_finish (CamelStore *store, GAsyncResult *result, GError **error); + void e_mail_store_go_online (CamelStore *store, gint io_priority, GCancellable *cancellable, @@ -41,6 +57,7 @@ void e_mail_store_go_online (CamelStore *store, gboolean e_mail_store_go_online_finish (CamelStore *store, GAsyncResult *result, GError **error); + void e_mail_store_prepare_for_offline (CamelStore *store, gint io_priority, |