diff options
author | bertrand <bertrand@helixcode.com> | 2000-01-25 09:09:56 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-01-25 09:09:56 +0800 |
commit | 50e5c22f0f5c4083ceee623b5bc02a6a7fc4f18c (patch) | |
tree | 591b540959a558b6c908e7bcc671c0906e42a2a6 /camel/camel-stream-fs.h | |
parent | 7dded29a632d26b8ed2c279004dd5fe39014de27 (diff) | |
download | gsoc2013-evolution-50e5c22f0f5c4083ceee623b5bc02a6a7fc4f18c.tar.gz gsoc2013-evolution-50e5c22f0f5c4083ceee623b5bc02a6a7fc4f18c.tar.zst gsoc2013-evolution-50e5c22f0f5c4083ceee623b5bc02a6a7fc4f18c.zip |
parent class is now CamelSeekableStream idem idem idem idem (_seek):
2000-01-24 bertrand <bertrand@helixcode.com>
* camel/camel-seekable-stream.c:
* camel/camel-seekable-stream.h:
* camel/camel-simple-data-wrapper-stream.h: parent class is now
CamelSeekableStream
* camel/camel-stream-buffered-fs.h: idem
* camel/camel-stream-buffered-fs.c: idem
* camel/camel-stream-mem.h: idem
* camel/camel-stream-mem.c: idem
(_seek): change declaration
* camel/camel-stream-fs.c: parent class is now
CamelSeekableStream
(_seek): change declaration
* camel/camel-stream-fs.h: parent class is now
CamelSeekableStream
Major compatible change in the stream hierarchy.
Removed the seek method from the general streams
so that we can use them as "DataSources".
svn path=/trunk/; revision=1622
Diffstat (limited to 'camel/camel-stream-fs.h')
-rw-r--r-- | camel/camel-stream-fs.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/camel/camel-stream-fs.h b/camel/camel-stream-fs.h index 7b5e7011c0..4910abbd5f 100644 --- a/camel/camel-stream-fs.h +++ b/camel/camel-stream-fs.h @@ -36,7 +36,7 @@ extern "C" { #include <gtk/gtk.h> #include <stdio.h> -#include "camel-stream.h" +#include "camel-seekable-stream.h" #define CAMEL_STREAM_FS_TYPE (camel_stream_fs_get_type ()) #define CAMEL_STREAM_FS(obj) (GTK_CHECK_CAST((obj), CAMEL_STREAM_FS_TYPE, CamelStreamFs)) @@ -53,7 +53,8 @@ typedef enum typedef struct { - CamelStream parent_object; + CamelSeekableStream parent_object; + gchar *name; /* name of the underlying file */ gint fd; /* file descriptor on the underlying file */ guint32 cur_pos; /* current postion in the stream */ @@ -65,7 +66,7 @@ typedef struct typedef struct { - CamelStreamClass parent_class; + CamelSeekableStreamClass parent_class; /* Virtual methods */ void (*init_with_fd) (CamelStreamFs *stream_fs, int fd); |