diff options
author | Not Zed <NotZed@Ximian.com> | 2002-07-30 22:20:06 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-07-30 22:20:06 +0800 |
commit | 432ddb8b6850277ca5eab615bbcf3bb8912bc7c1 (patch) | |
tree | 4eb95dfc153a6b9755db7a07818e4ac491dcf785 /mail/mail-mt.h | |
parent | 2f5cc27e5a77e2337847c221d0b1d2492c1718d2 (diff) | |
download | gsoc2013-evolution-432ddb8b6850277ca5eab615bbcf3bb8912bc7c1.tar.gz gsoc2013-evolution-432ddb8b6850277ca5eab615bbcf3bb8912bc7c1.tar.zst gsoc2013-evolution-432ddb8b6850277ca5eab615bbcf3bb8912bc7c1.zip |
setup private data. (mail_display_destroy): cancel any outstanding
2002-07-29 Not Zed <NotZed@Ximian.com>
* mail-display.c (mail_display_init): setup private data.
(mail_display_destroy): cancel any outstanding fetches, and free
private data.
(mail_display_set_message): Cancel any outstanding fetches.
(fetch_cancelled):
(fetch_next):
(fetch_remote):
(fetch_data):
(fetch_free):
(fetch_cancel):
(fetch_done): Implement, used to use soup to download remote
images.
(load_http): Removed.
(on_url_requested): When requesting a http* url, use the
fetch_remote call above.
* mail-display.h (struct _MailDisplay): Added priv(ate) member.
svn path=/trunk/; revision=17640
Diffstat (limited to 'mail/mail-mt.h')
-rw-r--r-- | mail/mail-mt.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mail/mail-mt.h b/mail/mail-mt.h index cb1adc6a7a..11a7166d74 100644 --- a/mail/mail-mt.h +++ b/mail/mail-mt.h @@ -102,6 +102,10 @@ typedef void *(*MailMainFunc)(); void *mail_call_main(mail_call_t type, MailMainFunc func, ...); +/* use with caution. only works with active message's anyway */ +void mail_enable_stop(void); +void mail_disable_stop(void); + /* a message port that receives messages in the gui thread, used for sending port */ extern EMsgPort *mail_gui_port; /* a message port that receives messages in the gui thread, used for the reply port */ |