diff options
Diffstat (limited to 'camel/providers/mbox/camel-mbox-parser.h')
-rw-r--r-- | camel/providers/mbox/camel-mbox-parser.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/providers/mbox/camel-mbox-parser.h b/camel/providers/mbox/camel-mbox-parser.h index 994e5d85e3..58f8cad3a2 100644 --- a/camel/providers/mbox/camel-mbox-parser.h +++ b/camel/providers/mbox/camel-mbox-parser.h @@ -29,6 +29,7 @@ typedef struct { guint message_position; + guint size; gchar *from; gchar *date; gchar *subject; @@ -36,11 +37,10 @@ typedef struct { gchar *priority; gchar *references; gchar *body_summary; + gchar *x_evolution; } CamelMboxParserMessageInfo; -GArray * camel_mbox_find_message_positions (int fd, - const gchar *message_delimiter, - gint first_position, - CamelException *ex); +typedef void camel_mbox_preparser_status_callback (double percentage_done, gpointer user_data); + |