Mercurial > audlegacy-plugins
view src/console/Vfs_File.h @ 323:230decbfe9be trunk
[svn] - what would we have ever done without Aerdan?
| author | nenolod |
|---|---|
| date | Thu, 30 Nov 2006 23:02:05 -0800 |
| parents | fb513e10174e |
| children | 986f098da058 |
line wrap: on
line source
// File_Reader based on a VFSFile #ifndef VFS_FILE_H #define VFS_FILE_H #include "Data_Reader.h" #include "audacious/vfs.h" class Vfs_File_Reader : public File_Reader { public: void reset( VFSFile* ); // use already-open file and doesn't close it in close() error_t open( const char* path ); VFSFile* file() const { return file_; } void close(); public: Vfs_File_Reader(); ~Vfs_File_Reader(); long size() const; long read_avail( void*, long ); long tell() const; error_t seek( long ); private: VFSFile* file_; VFSFile* owned_file_; }; #endif
