diff options
author | Bertrand Guiheneuf <Bertrand.Guiheneuf@inria.fr> | 1999-05-11 00:15:19 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-05-11 00:15:19 +0800 |
commit | 88f5b33f67bfe54a668bed1dfe203451eba7e027 (patch) | |
tree | bf38f9d4667d34f3c43d84a5ff55a6e8a71bc1e2 /camel/camel-mime-part.h | |
parent | 62b338094aac49edd76acbc227e18c4f06e726c1 (diff) | |
download | gsoc2013-evolution-88f5b33f67bfe54a668bed1dfe203451eba7e027.tar gsoc2013-evolution-88f5b33f67bfe54a668bed1dfe203451eba7e027.tar.gz gsoc2013-evolution-88f5b33f67bfe54a668bed1dfe203451eba7e027.tar.bz2 gsoc2013-evolution-88f5b33f67bfe54a668bed1dfe203451eba7e027.tar.lz gsoc2013-evolution-88f5b33f67bfe54a668bed1dfe203451eba7e027.tar.xz gsoc2013-evolution-88f5b33f67bfe54a668bed1dfe203451eba7e027.tar.zst gsoc2013-evolution-88f5b33f67bfe54a668bed1dfe203451eba7e027.zip |
A bunch of new set/get func.
1999-05-10 Bertrand Guiheneuf <Bertrand.Guiheneuf@inria.fr>
* camel/camel-mime-part.c (__camel_mime_part_get_header_lines):
(__camel_mime_part_set_header_lines):
(__camel_mime_part_get_content_languages):
(__camel_mime_part_set_content_languages):
(__camel_mime_part_get_encoding):
(__camel_mime_part_set_encoding):
(__camel_mime_part_get_content_MD5):
(__camel_mime_part_set_content_MD5):
(__camel_mime_part_get_content_id):
(__camel_mime_part_set_content_id):
A bunch of new set/get func.
* camel/gstring-util.c (g_string_list_free):
convenience function for string list
complete deallocation.
svn path=/trunk/; revision=900
Diffstat (limited to 'camel/camel-mime-part.h')
-rw-r--r-- | camel/camel-mime-part.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/camel/camel-mime-part.h b/camel/camel-mime-part.h index 0d5d16b4e4..17714e9191 100644 --- a/camel/camel-mime-part.h +++ b/camel/camel-mime-part.h @@ -51,9 +51,11 @@ typedef struct GString *description; GString *disposition; GString *content_id; - GString *content_md5; + GString *content_MD5; + GList *content_languages; GString *encoding; - GList *languages; + GString *filename; + GList *header_lines; } CamelMimePart; |