diff options
author | Max Kellermann <max@duempel.org> | 2008-10-26 20:34:03 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-26 20:34:03 +0100 |
commit | 23552f89cc6fbd28ffba0c2c485a24ab6b95eaa3 (patch) | |
tree | e424c88b4c86bb59e0cc6a162b3dd0e9e657f566 /src/input_file.h | |
parent | 21b8590b53699f92802cb95121e910033cbd4f11 (diff) | |
download | mpd-23552f89cc6fbd28ffba0c2c485a24ab6b95eaa3.tar.gz mpd-23552f89cc6fbd28ffba0c2c485a24ab6b95eaa3.tar.xz mpd-23552f89cc6fbd28ffba0c2c485a24ab6b95eaa3.zip |
input_file: don't export internal methods
The methods are only used in inputStream_fileOpen(), and should not be
exported.
Diffstat (limited to 'src/input_file.h')
-rw-r--r-- | src/input_file.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/input_file.h b/src/input_file.h index 00d85a36c..e3b97db3d 100644 --- a/src/input_file.h +++ b/src/input_file.h @@ -25,16 +25,4 @@ void inputStream_initFile(void); int inputStream_fileOpen(struct input_stream *inStream, char *filename); -int inputStream_fileSeek(struct input_stream *inStream, long offset, - int whence); - -size_t inputStream_fileRead(struct input_stream *inStream, - void *ptr, size_t size); - -int inputStream_fileClose(struct input_stream *inStream); - -int inputStream_fileAtEOF(struct input_stream *inStream); - -int inputStream_fileBuffer(struct input_stream *inStream); - #endif |