diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 1999-08-26 17:44:33 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-08-26 17:44:33 +0800 |
commit | 2a912b33018b0389672d9a4f09496b6a57071388 (patch) | |
tree | a34375a629d3d36575eae930a39ee3e76f2fba3c /camel/Makefile.am | |
parent | a76dccf18b6d8b854280031dbcc9187cd5744958 (diff) | |
download | gsoc2013-evolution-2a912b33018b0389672d9a4f09496b6a57071388.tar gsoc2013-evolution-2a912b33018b0389672d9a4f09496b6a57071388.tar.gz gsoc2013-evolution-2a912b33018b0389672d9a4f09496b6a57071388.tar.bz2 gsoc2013-evolution-2a912b33018b0389672d9a4f09496b6a57071388.tar.lz gsoc2013-evolution-2a912b33018b0389672d9a4f09496b6a57071388.tar.xz gsoc2013-evolution-2a912b33018b0389672d9a4f09496b6a57071388.tar.zst gsoc2013-evolution-2a912b33018b0389672d9a4f09496b6a57071388.zip |
new file, groups mime-part related utils. Meant to be used by providers
1999-08-26 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/camel-mime-part-utils.c: new file, groups
mime-part related utils. Meant to be used by providers
subclassing MimeMessage.
(camel_mime_part_construct_headers_from_stream):
(camel_mime_part_construct_content_from_stream):
no more useless temporary hash table.
* camel/camel-mime-part.c (_construct_from_stream): calls
mime-part-utils functions now.
* camel/gmime-utils.c (_store_header_pair_from_string):
do not use hash table to store header, use an array instead.
* MimePart cleanup. Not complete yet. Content must not be
parsed when constructing but only when content object is requested.
Default implementation will keep content in a stream.
svn path=/trunk/; revision=1144
Diffstat (limited to 'camel/Makefile.am')
-rw-r--r-- | camel/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/camel/Makefile.am b/camel/Makefile.am index c6860a6845..3fdedaac43 100644 --- a/camel/Makefile.am +++ b/camel/Makefile.am @@ -21,6 +21,7 @@ libcamel_la_SOURCES = \ camel-mime-body-part.c \ camel-mime-message.c \ camel-mime-part.c \ + camel-mime-part-utils.c \ camel-multipart.c \ camel-provider.c \ camel-service.c \ @@ -48,6 +49,7 @@ libcamelinclude_HEADERS = \ camel-medium.h \ camel-mime-message.h \ camel-mime-part.h \ + camel-mime-part-utils.h \ camel-multipart.h \ camel-provider.h \ camel-service.h \ |