diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-06-23 00:34:33 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-06-23 00:34:33 +0800 |
commit | c14e8dd705e3483f2b0cf1fec2d754637d66b062 (patch) | |
tree | b12f8c96baefe73ea799cfb7b25a8d7b1ef51710 /mail/mail-threads.h | |
parent | c74b334a2ca16a82d4652a5e5685e361bdaf08dc (diff) | |
download | gsoc2013-evolution-c14e8dd705e3483f2b0cf1fec2d754637d66b062.tar gsoc2013-evolution-c14e8dd705e3483f2b0cf1fec2d754637d66b062.tar.gz gsoc2013-evolution-c14e8dd705e3483f2b0cf1fec2d754637d66b062.tar.bz2 gsoc2013-evolution-c14e8dd705e3483f2b0cf1fec2d754637d66b062.tar.lz gsoc2013-evolution-c14e8dd705e3483f2b0cf1fec2d754637d66b062.tar.xz gsoc2013-evolution-c14e8dd705e3483f2b0cf1fec2d754637d66b062.tar.zst gsoc2013-evolution-c14e8dd705e3483f2b0cf1fec2d754637d66b062.zip |
Add nice blocking stuff for the error dialog and a new get_password hook in the async toolkit
svn path=/trunk/; revision=3692
Diffstat (limited to 'mail/mail-threads.h')
-rw-r--r-- | mail/mail-threads.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/mail-threads.h b/mail/mail-threads.h index 89fa439fa9..a56c6433a6 100644 --- a/mail/mail-threads.h +++ b/mail/mail-threads.h @@ -38,8 +38,11 @@ void mail_op_hide_progressbar( void ); void mail_op_show_progressbar( void ); void mail_op_set_message( gchar *fmt, ... ) G_GNUC_PRINTF( 1, 2 ); void mail_op_error( gchar *fmt, ... ) G_GNUC_PRINTF( 1, 2 ); +gboolean mail_op_get_password( gchar *prompt, gboolean secret, gchar **dest ); /* Wait for the async operations to finish */ void mail_operation_wait_for_finish( void ); +gboolean mail_operations_are_executing( void ); + #endif /* defined _MAIL_THREADS_H_ */ |