diff options
author | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-06-19 04:32:18 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-06-19 04:32:18 +0800 |
commit | 19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767 (patch) | |
tree | 04f063fc3c18e43eea5251943be93fa89cfd5549 /camel/gmime-content-field.h | |
parent | 499ae51b86891889ffb5fd9954b1f60efcadfed2 (diff) | |
download | gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.tar gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.tar.gz gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.tar.bz2 gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.tar.lz gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.tar.xz gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.tar.zst gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.zip |
Commit of all Netherlands changes.
All mime stuff uses streams now, and it still works.
Bertrand
svn path=/trunk/; revision=981
Diffstat (limited to 'camel/gmime-content-field.h')
-rw-r--r-- | camel/gmime-content-field.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/gmime-content-field.h b/camel/gmime-content-field.h index 92328dcb2a..2711deabb9 100644 --- a/camel/gmime-content-field.h +++ b/camel/gmime-content-field.h @@ -33,6 +33,7 @@ extern "C" { #include <glib.h> #include <stdio.h> +#include "camel-stream.h" typedef struct { @@ -44,7 +45,7 @@ typedef struct { GMimeContentField *gmime_content_field_new (GString *type, GString *subtype); void gmime_content_field_set_parameter(GMimeContentField *content_field, GString *attribute, GString *value); -void gmime_content_field_write_to_file(GMimeContentField *content_field, FILE *file); +void gmime_content_field_write_to_stream (GMimeContentField *content_field, CamelStream *stream); #ifdef __cplusplus |