]> git.notmuchmail.org Git - notmuch/blob - util/gmime-extra.h
794ffbfdf9bbc13a215cb58ea9e09e4fce51b2f3
[notmuch] / util / gmime-extra.h
1 #ifndef _GMIME_EXTRA_H
2 #define _GMIME_EXTRA_H
3 #include <gmime/gmime.h>
4
5 GMimeStream *g_mime_stream_stdout_new(void);
6
7 #include <talloc.h>
8
9 /**
10  * return talloc allocated date string
11  */
12 char *g_mime_message_get_date_string (void *ctx, GMimeMessage *message);
13 InternetAddressList * g_mime_message_get_reply_to_list (GMimeMessage *message);
14
15 /**
16  * return talloc allocated reply-to string
17  */
18 char * g_mime_message_get_reply_to_string (void *ctx, GMimeMessage *message);
19
20
21 /**
22  * Return glib allocated reply-to list
23  */
24 InternetAddressList * g_mime_message_get_reply_to_list (GMimeMessage *message);
25
26 #endif