diff options
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 |