From 05de2e998c7df2757ae63ce6a053e27eca3d13ca Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 17 Oct 2013 09:43:55 +0200 Subject: InputStream: use int64_t instead of goffset Decouple some more from GLib. --- src/InputPlugin.hxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/InputPlugin.hxx') diff --git a/src/InputPlugin.hxx b/src/InputPlugin.hxx index f6976bf8d..134207584 100644 --- a/src/InputPlugin.hxx +++ b/src/InputPlugin.hxx @@ -23,9 +23,8 @@ #include "thread/Mutex.hxx" #include "thread/Cond.hxx" -#include - #include +#include struct config_param; struct input_stream; @@ -33,6 +32,8 @@ class Error; struct Tag; struct InputPlugin { + typedef int64_t offset_type; + const char *name; /** @@ -85,7 +86,7 @@ struct InputPlugin { size_t (*read)(struct input_stream *is, void *ptr, size_t size, Error &error); bool (*eof)(struct input_stream *is); - bool (*seek)(struct input_stream *is, goffset offset, int whence, + bool (*seek)(struct input_stream *is, offset_type offset, int whence, Error &error); }; -- cgit v1.2.3