diff options
author | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-08-02 05:36:42 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-08-02 05:36:42 +0800 |
commit | c54abe884b175add134cc07e8fda31ffa65cac26 (patch) | |
tree | de32af6f25286f1a337d69dc20c7979b841788c5 /camel/Makefile.am | |
parent | 2c543492092832d71f1f677d52a42043c8787be7 (diff) | |
download | gsoc2013-evolution-c54abe884b175add134cc07e8fda31ffa65cac26.tar.gz gsoc2013-evolution-c54abe884b175add134cc07e8fda31ffa65cac26.tar.zst gsoc2013-evolution-c54abe884b175add134cc07e8fda31ffa65cac26.zip |
new memory buffer based stream.
* camel/camel-stream-mem.c:
* camel/camel-stream-mem.h:
new memory buffer based stream.
* camel/camel-stream-fs.c (_seek):
implementation for file system based stream.
* camel/camel-stream.c (camel_stream_seek):
new method.
* camel/camel-stream-fs.c (camel_stream_fs_class_init):
pass CamelStreamFsClass instead of CamelStreamClass.
svn path=/trunk/; revision=1056
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 573f256d48..fc3f155726 100644 --- a/camel/Makefile.am +++ b/camel/Makefile.am @@ -27,6 +27,7 @@ libcamel_la_SOURCES = \ camel-store.c \ camel-stream.c \ camel-stream-fs.c \ + camel-stream-mem.c \ data-wrapper-repository.c \ gmime-content-field.c \ gmime-utils.c \ @@ -50,6 +51,7 @@ libcamelinclude_HEADERS = \ camel-store.h \ camel-stream.h \ camel-stream-fs.h \ + camel-stream-mem.h \ data-wrapper-repository.h \ gmime-content-field.h \ gmime-utils.h \ |