Mercurial > audlegacy-plugins
view src/console/Vfs_File.h @ 2942:233cb5dffbf7
Fix tags for ALAC files.
For some reason, the tag can occour a second time, but this time empty.
Always use the first tag we found.
| author | Jonathan Schleifer <js@webkeks.org> |
|---|---|
| date | Sat, 27 Sep 2008 19:04:32 +0200 |
| parents | 839804c3b3a4 |
| children | 3134a0987162 |
line wrap: on
line source
// File_Reader wrapper over a VFSFile #ifndef VFS_FILE_H #define VFS_FILE_H #include "Data_Reader.h" #include <audacious/plugin.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
