diff options
Diffstat (limited to '')
-rw-r--r-- | src/input_stream.h | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/src/input_stream.h b/src/input_stream.h index fbd8eb3fd..b2887e10d 100644 --- a/src/input_stream.h +++ b/src/input_stream.h @@ -20,8 +20,23 @@ #define INPUT_STREAM_H #include <stddef.h> +#include <stdbool.h> + +struct input_stream; + +struct input_plugin { + bool (*open)(struct input_stream *is, const char *url); + int (*close)(struct input_stream *is); + + int (*buffer)(struct input_stream *is); + size_t (*read)(struct input_stream *is, void *ptr, size_t size); + int (*eof)(struct input_stream *is); + int (*seek)(struct input_stream *is, long offset, int whence); +}; struct input_stream { + const struct input_plugin *plugin; + int ready; int error; @@ -30,12 +45,6 @@ struct input_stream { char *mime; int seekable; - int (*seekFunc)(struct input_stream *is, long offset, int whence); - size_t (*readFunc)(struct input_stream *is, void *ptr, size_t size); - int (*closeFunc)(struct input_stream *is); - int (*atEOFFunc)(struct input_stream *is); - int (*bufferFunc)(struct input_stream *is); - void *data; char *meta_name; char *meta_title; |