diff options
author | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-06-19 04:32:18 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-06-19 04:32:18 +0800 |
commit | 19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767 (patch) | |
tree | 04f063fc3c18e43eea5251943be93fa89cfd5549 /tests/test1.c | |
parent | 499ae51b86891889ffb5fd9954b1f60efcadfed2 (diff) | |
download | gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.tar gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.tar.gz gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.tar.bz2 gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.tar.lz gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.tar.xz gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.tar.zst gsoc2013-evolution-19a118096fe6f3d7b79a0fe3cb6e5bfe50ef8767.zip |
Commit of all Netherlands changes.
All mime stuff uses streams now, and it still works.
Bertrand
svn path=/trunk/; revision=981
Diffstat (limited to 'tests/test1.c')
-rw-r--r-- | tests/test1.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/tests/test1.c b/tests/test1.c index 9a483d0ca9..65d3b046c7 100644 --- a/tests/test1.c +++ b/tests/test1.c @@ -1,13 +1,16 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ #include "camel-mime-message.h" #include "stdio.h" -#include <bonobo/gnome-stream.h> +#include "camel-stream.h" +#include "camel-stream-fs.h" +#include "camel-log.h" void main (int argc, char**argv) { CamelMimeMessage *message; - FILE *output_file; + /* FILE *output_file; */ + CamelStream *stream; gtk_init (&argc, &argv); message = camel_mime_message_new_with_session( (CamelSession *)NULL); @@ -28,15 +31,13 @@ main (int argc, char**argv) camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_CC), g_string_new ("maury@justmagic.com")); camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_BCC), g_string_new ("guiheneu@aful.org")); - output_file = fopen ("mail.test", "w"); - if (!output_file) { - perror("could not open output file"); + + stream = camel_stream_fs_new_with_name (g_string_new ("mail1.test"), CAMEL_STREAM_FS_WRITE ); + if (!stream) { + CAMEL_LOG(WARNING, "could not open output file"); exit(2); } - camel_data_wrapper_write_to_file (CAMEL_DATA_WRAPPER (message), output_file); - fclose (output_file); - - - - + + camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message), stream); + camel_stream_close (stream); } |