diff options
author | bertrand <bertrand@helixcode.com> | 2000-01-13 12:13:12 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-01-13 12:13:12 +0800 |
commit | 21c698ec023314751227247e4bef1d68a78a21ea (patch) | |
tree | 9adc9d14c533949f8b02ad150c4c3e17ed24a880 /camel/providers/mbox/camel-mbox-parser.h | |
parent | 095c53bace7844fbdb0f2053f7facdc609a1bb57 (diff) | |
download | gsoc2013-evolution-21c698ec023314751227247e4bef1d68a78a21ea.tar gsoc2013-evolution-21c698ec023314751227247e4bef1d68a78a21ea.tar.gz gsoc2013-evolution-21c698ec023314751227247e4bef1d68a78a21ea.tar.bz2 gsoc2013-evolution-21c698ec023314751227247e4bef1d68a78a21ea.tar.lz gsoc2013-evolution-21c698ec023314751227247e4bef1d68a78a21ea.tar.xz gsoc2013-evolution-21c698ec023314751227247e4bef1d68a78a21ea.tar.zst gsoc2013-evolution-21c698ec023314751227247e4bef1d68a78a21ea.zip |
Added the prototype of camel_mbox_parse_file.
2000-01-12 bertrand <bertrand@helixcode.com>
* camel/providers/mbox/camel-mbox-parser.h (camel_mbox_parse_file):
Added the prototype of camel_mbox_parse_file.
* camel/providers/mbox/camel-mbox-parser.c (camel_mbox_parse_file):
updated in-line documentation.
Evolution is now in a compilable state.
svn path=/trunk/; revision=1565
Diffstat (limited to 'camel/providers/mbox/camel-mbox-parser.h')
-rw-r--r-- | camel/providers/mbox/camel-mbox-parser.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/camel/providers/mbox/camel-mbox-parser.h b/camel/providers/mbox/camel-mbox-parser.h index 58f8cad3a2..b8d2e93dc6 100644 --- a/camel/providers/mbox/camel-mbox-parser.h +++ b/camel/providers/mbox/camel-mbox-parser.h @@ -44,3 +44,13 @@ typedef struct { typedef void camel_mbox_preparser_status_callback (double percentage_done, gpointer user_data); + +GArray * +camel_mbox_parse_file (int fd, + const gchar *message_delimiter, + guint start_position, + gboolean get_message_summary, + camel_mbox_preparser_status_callback *status_callback, + double status_interval, + gpointer user_data); + |