summaryrefslogtreecommitdiff
path: root/common/filelist-vfs-intf.h
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2009-12-13 14:36:33 +0100
committerTomas Bzatek <tbzatek@users.sourceforge.net>2009-12-13 14:36:33 +0100
commite42a4ff3031aa1c1aaf27aa34d9395fec185924b (patch)
tree51987665008a0f7a28c1351aaa4bb2eb1e37c46f /common/filelist-vfs-intf.h
parent016687cc49c811589951ebd064a86bdde1405866 (diff)
downloadtuxcmd-modules-e42a4ff3031aa1c1aaf27aa34d9395fec185924b.tar.xz
Error system transformation to GErrorv0.6.74
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);