comparison libaudacious/vfs.h @ 811:86ca43d8a845 trunk

[svn] - implement vfs_feof() and vfs_ftell() and update the scrobbler plugin to reflect that, by external contributor: Leonardo Boshell <leonardop -at- gentoo.org>
author nenolod
date Thu, 09 Mar 2006 19:03:27 -0800
parents cb178e5ad177
children 4d60baab67a0
comparison
equal deleted inserted replaced
810:e9509e909193 811:86ca43d8a845
27 gint vfs_fseek(VFSFile * file, 27 gint vfs_fseek(VFSFile * file,
28 glong offset, 28 glong offset,
29 gint whence); 29 gint whence);
30 void vfs_rewind(VFSFile * file); 30 void vfs_rewind(VFSFile * file);
31 glong vfs_ftell(VFSFile * file); 31 glong vfs_ftell(VFSFile * file);
32 gboolean vfs_feof(VFSFile * file);
32 33
33 gboolean vfs_file_test(const gchar * path, 34 gboolean vfs_file_test(const gchar * path,
34 GFileTest test); 35 GFileTest test);
35 36
36 gboolean vfs_is_writeable(const gchar * path); 37 gboolean vfs_is_writeable(const gchar * path);
37 38
38 gboolean vfs_truncate(VFSFile * file, glong length); 39 gboolean vfs_truncate(VFSFile * file, glong length);
39 40
40 41