diff options
author | bertrand <bertrand@helixcode.com> | 2000-01-13 11:37:07 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-01-13 11:37:07 +0800 |
commit | 5571fc3e69a84a1b53da1ce768282b26d78b39f8 (patch) | |
tree | d5b685d699ab9e1969905acf64ed93ee916dfccf /camel/providers/mbox/camel-mbox-parser.h | |
parent | 4d2a782588b3d7b7a24b5838be9a9b280a089895 (diff) | |
download | gsoc2013-evolution-5571fc3e69a84a1b53da1ce768282b26d78b39f8.tar gsoc2013-evolution-5571fc3e69a84a1b53da1ce768282b26d78b39f8.tar.gz gsoc2013-evolution-5571fc3e69a84a1b53da1ce768282b26d78b39f8.tar.bz2 gsoc2013-evolution-5571fc3e69a84a1b53da1ce768282b26d78b39f8.tar.lz gsoc2013-evolution-5571fc3e69a84a1b53da1ce768282b26d78b39f8.tar.xz gsoc2013-evolution-5571fc3e69a84a1b53da1ce768282b26d78b39f8.tar.zst gsoc2013-evolution-5571fc3e69a84a1b53da1ce768282b26d78b39f8.zip |
corrected a bunch of bugs
2000-01-12 bertrand <bertrand@helixcode.com>
* corrected a bunch of bugs
* camel/providers/mbox/camel-mbox-parser.c
(camel_mbox_parse_file):
parser the subject and date.
* camel/providers/mbox/camel-mbox-parser.c
(camel_mbox_parse_file): added the ability to
follow the parsing progression.
* camel/providers/mbox/camel-mbox-parser.h:
parse the x-evolution field.
svn path=/trunk/; revision=1563
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); + |