diff options
author | Max Kellermann <max@duempel.org> | 2009-03-02 20:13:08 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-02 20:13:08 +0100 |
commit | 2e51365ea4b636560d234b0b937a6c8dfb528c10 (patch) | |
tree | 2ccaf460e326b6d474aa0b2df7873bf6c0a475d7 /src/input_stream.h | |
parent | 8694574f6329ad6e55b9a6673506eca697da360d (diff) | |
download | mpd-2e51365ea4b636560d234b0b937a6c8dfb528c10.tar.gz mpd-2e51365ea4b636560d234b0b937a6c8dfb528c10.tar.xz mpd-2e51365ea4b636560d234b0b937a6c8dfb528c10.zip |
input_stream: moved struct input_plugin to input_plugin.h
Start to separate private from public input_stream API.
Diffstat (limited to '')
-rw-r--r-- | src/input_stream.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/input_stream.h b/src/input_stream.h index d8698c4cd..e2ada0ef6 100644 --- a/src/input_stream.h +++ b/src/input_stream.h @@ -25,17 +25,6 @@ struct input_stream; -struct input_plugin { - bool (*open)(struct input_stream *is, const char *url); - void (*close)(struct input_stream *is); - - struct tag *(*tag)(struct input_stream *is); - int (*buffer)(struct input_stream *is); - size_t (*read)(struct input_stream *is, void *ptr, size_t size); - bool (*eof)(struct input_stream *is); - bool (*seek)(struct input_stream *is, off_t offset, int whence); -}; - struct input_stream { /** * the plugin which implements this input stream |