aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-composer-utils.h
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2009-05-22 20:00:14 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-24 21:46:17 +0800
commitc3205a427adcc910f0614cb83249622816440c56 (patch)
tree1064929a119a5dc7ff8c43aa190030344796dba5 /mail/em-composer-utils.h
parent6d89d46353caad7a1a9e70cd60d5aa936f534e40 (diff)
downloadgsoc2013-evolution-c3205a427adcc910f0614cb83249622816440c56.tar
gsoc2013-evolution-c3205a427adcc910f0614cb83249622816440c56.tar.gz
gsoc2013-evolution-c3205a427adcc910f0614cb83249622816440c56.tar.bz2
gsoc2013-evolution-c3205a427adcc910f0614cb83249622816440c56.tar.lz
gsoc2013-evolution-c3205a427adcc910f0614cb83249622816440c56.tar.xz
gsoc2013-evolution-c3205a427adcc910f0614cb83249622816440c56.tar.zst
gsoc2013-evolution-c3205a427adcc910f0614cb83249622816440c56.zip
Mail changes required for Anjal.
Diffstat (limited to 'mail/em-composer-utils.h')
-rw-r--r--mail/em-composer-utils.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/mail/em-composer-utils.h b/mail/em-composer-utils.h
index 45df05194a..37fd185eaa 100644
--- a/mail/em-composer-utils.h
+++ b/mail/em-composer-utils.h
@@ -34,11 +34,15 @@ extern "C" {
struct _CamelFolder;
struct _CamelMimeMessage;
struct _CamelException;
+struct _CamelInternetAddress;
+struct _CamelNNTPAddress;
struct _EMsgComposer;
struct _EMFormat;
struct _EAccount;
+struct _EDestination;
void em_utils_compose_new_message (const char *fromuri);
+struct _EMsgComposer * em_utils_compose_lite_new_message (const char *fromuri);
/* FIXME: mailto? url? should make up its mind what its called. imho use 'uri' */
void em_utils_compose_new_message_with_mailto (const char *url, const char *fromuri);
@@ -67,7 +71,11 @@ enum {
REPLY_MODE_LIST
};
-void em_utils_reply_to_message (struct _CamelFolder *, const char *uid, struct _CamelMimeMessage *message, int mode, struct _EMFormat *source);
+char *em_utils_construct_composer_text (struct _CamelMimeMessage *message, struct _EMFormat *source);
+void em_utils_get_reply_sender (struct _CamelMimeMessage *message, struct _CamelInternetAddress *to, struct _CamelNNTPAddress *postto);
+void em_utils_get_reply_all (struct _CamelMimeMessage *message, struct _CamelInternetAddress *to, struct _CamelInternetAddress *cc, struct _CamelNNTPAddress *postto);
+struct _EMsgComposer * em_utils_reply_to_message (struct _CamelFolder *, const char *uid, struct _CamelMimeMessage *message, int mode, struct _EMFormat *source);
+struct _EDestination ** em_utils_camel_address_to_destination (struct _CamelInternetAddress *iaddr);
void em_configure_new_composer (struct _EMsgComposer *composer);