aboutsummaryrefslogtreecommitdiffstats
path: root/camel/gmime-content-field.h
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@inria.fr>1999-06-22 22:19:24 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-06-22 22:19:24 +0800
commit5deed2f193e7ab91f159f1a764b78578861044cd (patch)
tree78830536944b4a030673a5cb43339aaef65e1112 /camel/gmime-content-field.h
parent4f689d0fb8e33e91fec8b8e0471d48f1e6993622 (diff)
downloadgsoc2013-evolution-5deed2f193e7ab91f159f1a764b78578861044cd.tar
gsoc2013-evolution-5deed2f193e7ab91f159f1a764b78578861044cd.tar.gz
gsoc2013-evolution-5deed2f193e7ab91f159f1a764b78578861044cd.tar.bz2
gsoc2013-evolution-5deed2f193e7ab91f159f1a764b78578861044cd.tar.lz
gsoc2013-evolution-5deed2f193e7ab91f159f1a764b78578861044cd.tar.xz
gsoc2013-evolution-5deed2f193e7ab91f159f1a764b78578861044cd.tar.zst
gsoc2013-evolution-5deed2f193e7ab91f159f1a764b78578861044cd.zip
new function, returns "type/subtype" mime type string.
* camel/gmime-content-field.c (gmime_content_field_get_mime_type): new function, returns "type/subtype" mime type string. (gmime_content_field_construct_from_string): new function, construbt a content_field object form a string. be used to set the mime_type from a string. * camel/camel-mime-part.c (_set_content_type): (camel_mime_part_set_content_type): (_get_content_type): (_get_content_type): new methods. 1999-06-21 bertrand <Bertrand.Guiheneuf@inria.fr> * camel/gmime-utils.c (get_header_table_from_stream): replace CR/LF+'\t' with ' ' * camel/camel-mime-message.c (_set_recipient_list_from_string): trim \t when splitting * camel/gmime-utils.c (get_header_table_from_file): corrected bug in scanning tabulations ('t' -> '\t') * tests/test2.c (main): read mail.test instead of mail1.test * camel/camel-mime-part.c (_add_header): added comments svn path=/trunk/; revision=984
Diffstat (limited to 'camel/gmime-content-field.h')
-rw-r--r--camel/gmime-content-field.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/camel/gmime-content-field.h b/camel/gmime-content-field.h
index 2711deabb9..7fe66bf7a9 100644
--- a/camel/gmime-content-field.h
+++ b/camel/gmime-content-field.h
@@ -46,6 +46,9 @@ 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_stream (GMimeContentField *content_field, CamelStream *stream);
+void gmime_content_field_construct_from_string (GMimeContentField *content_field, GString *string);
+void gmime_content_field_free (GMimeContentField *content_field);
+GString * gmime_content_field_get_mime_type (GMimeContentField *content_field);
#ifdef __cplusplus