diff options
author | Not Zed <NotZed@HelixCode.com> | 2000-11-02 11:36:48 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-11-02 11:36:48 +0800 |
commit | 6db2305b3345ebb436c81bda685ccf1cb8bcbfa7 (patch) | |
tree | e1abcc38d5d1e928d4292424fc6a1b6b0843b006 /mail/message-thread.h | |
parent | f351369e5127337eb95185ac764b6744faf4b87f (diff) | |
download | gsoc2013-evolution-6db2305b3345ebb436c81bda685ccf1cb8bcbfa7.tar gsoc2013-evolution-6db2305b3345ebb436c81bda685ccf1cb8bcbfa7.tar.gz gsoc2013-evolution-6db2305b3345ebb436c81bda685ccf1cb8bcbfa7.tar.bz2 gsoc2013-evolution-6db2305b3345ebb436c81bda685ccf1cb8bcbfa7.tar.lz gsoc2013-evolution-6db2305b3345ebb436c81bda685ccf1cb8bcbfa7.tar.xz gsoc2013-evolution-6db2305b3345ebb436c81bda685ccf1cb8bcbfa7.tar.zst gsoc2013-evolution-6db2305b3345ebb436c81bda685ccf1cb8bcbfa7.zip |
** Merged in camel-incremental-branch.
2000-11-02 Not Zed <NotZed@HelixCode.com>
** Merged in camel-incremental-branch.
* mail-format.c (mail_get_message_body): Jeff! Sigh.
We should definetly not be strduping the
content, it has already been copied and duplicated. Look at
get_data_wrapper_text.
svn path=/trunk/; revision=6337
Diffstat (limited to 'mail/message-thread.h')
-rw-r--r-- | mail/message-thread.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mail/message-thread.h b/mail/message-thread.h index cf4665663f..d5153cbfc0 100644 --- a/mail/message-thread.h +++ b/mail/message-thread.h @@ -5,7 +5,6 @@ #include "message-list.h" struct _container { - /* Next must be the first member */ struct _container *next, *parent, *child; @@ -15,6 +14,15 @@ struct _container { int order; }; +struct _thread_messages { + struct _container *tree; +}; + +struct _thread_messages *thread_messages(CamelFolder *folder, GPtrArray *uids); +void thread_messages_add(struct _thread_messages *thread, CamelFolder *folder, GPtrArray *uids); +void thread_messages_remove(struct _thread_messages *thread, CamelFolder *folder, GPtrArray *uids); +void thread_messages_free(struct _thread_messages *c); + void mail_do_thread_messages (MessageList *ml, GPtrArray *uids, gboolean use_camel_uidfree, void (*build) (MessageList *, |