aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-seekable-stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-seekable-stream.h')
-rw-r--r--camel/camel-seekable-stream.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/camel/camel-seekable-stream.h b/camel/camel-seekable-stream.h
index 7f00edc81a..e7ab941caa 100644
--- a/camel/camel-seekable-stream.h
+++ b/camel/camel-seekable-stream.h
@@ -57,6 +57,8 @@ typedef struct
{
CamelStream parent_object;
+ guint32 cur_pos; /* current postion in the stream */
+
} CamelSeekableStream;
@@ -66,8 +68,8 @@ typedef struct {
/* Virtual methods */
gint (*seek) (CamelSeekableStream *stream, gint offset, CamelStreamSeekPolicy policy);
-
-
+
+
} CamelSeekableStreamClass;
@@ -77,7 +79,10 @@ GtkType camel_seekable_stream_get_type (void);
/* public methods */
-gint camel_stream_seek (CamelSeekableStream *stream, gint offset, CamelStreamSeekPolicy policy);
+gint camel_seekable_stream_seek (CamelSeekableStream *stream,
+ gint offset,
+ CamelStreamSeekPolicy policy);
+guint32 camel_seekable_stream_get_current_position (CamelSeekableStream *stream);
#ifdef __cplusplus