diff options
author | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-07-15 23:54:52 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-07-15 23:54:52 +0800 |
commit | 4a765990e54c4caeb9880ffac8994cf64f23baae (patch) | |
tree | 749e67b36154ca06593d8d798e808512228d6a93 /camel/gmime-content-field.h | |
parent | 16d79f55774a2c65863d2d9ec322f9bdbc1297a2 (diff) | |
download | gsoc2013-evolution-4a765990e54c4caeb9880ffac8994cf64f23baae.tar gsoc2013-evolution-4a765990e54c4caeb9880ffac8994cf64f23baae.tar.gz gsoc2013-evolution-4a765990e54c4caeb9880ffac8994cf64f23baae.tar.bz2 gsoc2013-evolution-4a765990e54c4caeb9880ffac8994cf64f23baae.tar.lz gsoc2013-evolution-4a765990e54c4caeb9880ffac8994cf64f23baae.tar.xz gsoc2013-evolution-4a765990e54c4caeb9880ffac8994cf64f23baae.tar.zst gsoc2013-evolution-4a765990e54c4caeb9880ffac8994cf64f23baae.zip |
sync before going home
svn path=/trunk/; revision=1026
Diffstat (limited to 'camel/gmime-content-field.h')
-rw-r--r-- | camel/gmime-content-field.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/camel/gmime-content-field.h b/camel/gmime-content-field.h index 7fe66bf7a9..e71b21bb34 100644 --- a/camel/gmime-content-field.h +++ b/camel/gmime-content-field.h @@ -37,18 +37,18 @@ extern "C" { typedef struct { - GString *type; - GString *subtype; + gchar *type; + gchar *subtype; GHashTable *parameters; } GMimeContentField; -GMimeContentField *gmime_content_field_new (GString *type, GString *subtype); -void gmime_content_field_set_parameter(GMimeContentField *content_field, GString *attribute, GString *value); +GMimeContentField *gmime_content_field_new (const gchar *type, const gchar *subtype); +void gmime_content_field_set_parameter (GMimeContentField *content_field, const gchar *attribute, const gchar *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_construct_from_string (GMimeContentField *content_field, gchar *string); void gmime_content_field_free (GMimeContentField *content_field); -GString * gmime_content_field_get_mime_type (GMimeContentField *content_field); +gchar * gmime_content_field_get_mime_type (GMimeContentField *content_field); #ifdef __cplusplus |