aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-part.h
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@inria.fr>1999-05-10 05:03:54 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-05-10 05:03:54 +0800
commit62b338094aac49edd76acbc227e18c4f06e726c1 (patch)
treed482fec8e6a4ccabef92d7dddd267d9eb5e05b4a /camel/camel-mime-part.h
parent65cc58a082a305923a472bcd75c843a47586006c (diff)
downloadgsoc2013-evolution-62b338094aac49edd76acbc227e18c4f06e726c1.tar
gsoc2013-evolution-62b338094aac49edd76acbc227e18c4f06e726c1.tar.gz
gsoc2013-evolution-62b338094aac49edd76acbc227e18c4f06e726c1.tar.bz2
gsoc2013-evolution-62b338094aac49edd76acbc227e18c4f06e726c1.tar.lz
gsoc2013-evolution-62b338094aac49edd76acbc227e18c4f06e726c1.tar.xz
gsoc2013-evolution-62b338094aac49edd76acbc227e18c4f06e726c1.tar.zst
gsoc2013-evolution-62b338094aac49edd76acbc227e18c4f06e726c1.zip
new method
1999-05-09 bertrand <Bertrand.Guiheneuf@inria.fr> * camel/camel-mime-part.c (__camel_mime_part_add_header): new method * camel/camel-mime-part.h (struct CamelMimePart): added core fields. svn path=/trunk/; revision=899
Diffstat (limited to 'camel/camel-mime-part.h')
-rw-r--r--camel/camel-mime-part.h9
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;