comparison src/Input/console/Vfs_File.h @ 0:13389e613d67 trunk

[svn] - initial import of audacious-plugins tree (lots to do)
author nenolod
date Mon, 18 Sep 2006 01:11:49 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:13389e613d67
1
2 // File_Reader based on a VFSFile
3
4 #ifndef VFS_FILE_H
5 #define VFS_FILE_H
6
7 #include "abstract_file.h"
8
9 class Vfs_File_Reader : public File_Reader {
10 void* file_;
11 public:
12 Vfs_File_Reader();
13 ~Vfs_File_Reader();
14 error_t open( const char* );
15 long size() const;
16 long read_avail( void*, long );
17 long tell() const;
18 error_t seek( long );
19 void close();
20 };
21
22 #endif
23