diff options
Diffstat (limited to 'camel/gmime-content-field.h')
-rw-r--r-- | camel/gmime-content-field.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/camel/gmime-content-field.h b/camel/gmime-content-field.h index 663c747291..01045545ec 100644 --- a/camel/gmime-content-field.h +++ b/camel/gmime-content-field.h @@ -41,9 +41,14 @@ typedef struct { gchar *subtype; GHashTable *parameters; + gint ref; + } GMimeContentField; GMimeContentField *gmime_content_field_new (const gchar *type, const gchar *subtype); +void gmime_content_field_ref (GMimeContentField *content_field); +void gmime_content_field_unref (GMimeContentField *content_field); + 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, const gchar *string); |