Files
evolution/mail/message-thread.h
Peter Williams 8cb514d6dd Merge with camel-async.
svn path=/trunk/; revision=4687
2000-08-10 17:30:50 +00:00

24 lines
589 B
C

#ifndef _MESSAGE_THREAD_H
#define _MESSAGE_THREAD_H
#include <gnome.h>
#include "message-list.h"
struct _container {
struct _container *next,
*parent,
*child;
const CamelMessageInfo *message;
char *root_subject; /* cached root equivalent subject */
int re; /* re version of subject? */
int order; /* the order of this message in the folder */
};
void mail_do_thread_messages (MessageList *ml, GPtrArray *uids,
gboolean use_camel_uidfree,
void (*build) (MessageList *, ETreePath *,
struct _container *, int *));
#endif /* !_MESSAGE_THREAD_H */