view src/console/Vfs_File.h @ 620:7a181a17f995 trunk

[svn] revise input_id3_get_string(): - make use of strcmp() - remove debug g_print()
author yaz
date Thu, 08 Feb 2007 01:14:33 -0800
parents 986f098da058
children 2ebeb7816c5e
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/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