summaryrefslogtreecommitdiff
path: root/common/filelist-vfs-intf.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/filelist-vfs-intf.h')
-rw-r--r--common/filelist-vfs-intf.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/filelist-vfs-intf.h b/common/filelist-vfs-intf.h
index ff3eeef..d781e70 100644
--- a/common/filelist-vfs-intf.h
+++ b/common/filelist-vfs-intf.h
@@ -52,13 +52,13 @@ guint64 vfs_filelist_get_dir_size (struct VfsFilelistData *data, const char
void vfs_filelist_get_dir_size_break (struct VfsFilelistData *data);
gboolean vfs_filelist_file_exists (struct VfsFilelistData *data, const char *FileName, const long Use_lstat);
-TVFSResult vfs_filelist_file_info (struct VfsFilelistData *data, const char *AFileName, struct TVFSItem *Item, gboolean FollowSymlinks, gboolean AddFullPath);
-TVFSResult vfs_filelist_list_first (struct VfsFilelistData *data, const char *sDir, struct TVFSItem *Item, gboolean FollowSymlinks, gboolean AddFullPath);
-TVFSResult vfs_filelist_list_next (struct VfsFilelistData *data, struct TVFSItem *Item);
-TVFSResult vfs_filelist_list_close (struct VfsFilelistData *data);
+struct TVFSItem * vfs_filelist_file_info (struct VfsFilelistData *data, const char *AFileName, gboolean FollowSymlinks, gboolean AddFullPath, GError **error);
+struct TVFSItem * vfs_filelist_list_first (struct VfsFilelistData *data, const char *sDir, gboolean FollowSymlinks, gboolean AddFullPath, GError **error);
+struct TVFSItem * vfs_filelist_list_next (struct VfsFilelistData *data, GError **error);
+gboolean vfs_filelist_list_close (struct VfsFilelistData *data, GError **error);
-char * vfs_filelist_change_dir (struct VfsFilelistData *data, const char *NewPath);
+char * vfs_filelist_change_dir (struct VfsFilelistData *data, const char *NewPath, GError **error);