diff options
Diffstat (limited to 'camel/camel-mime-part.h')
-rw-r--r-- | camel/camel-mime-part.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/camel/camel-mime-part.h b/camel/camel-mime-part.h index 2342fb0e50..0d5d16b4e4 100644 --- a/camel/camel-mime-part.h +++ b/camel/camel-mime-part.h @@ -42,10 +42,19 @@ extern "C" { #define IS_CAMEL_MIME_PART(o) (GTK_CHECK_TYPE((o), CAMEL_MIME_PART_TYPE)) + typedef struct { CamelDataWrapper parent_object; + GHashTable *headers; + GString *description; + GString *disposition; + GString *content_id; + GString *content_md5; + GString *encoding; + GList *languages; + } CamelMimePart; |