comparison src/ui_fileops.h @ 1000:4fe8f9656107

For the sake of consistency, use glib basic types everywhere.
author zas_
date Tue, 26 Aug 2008 22:22:51 +0000
parents e07895754e65
children 1646720364cf
comparison
equal deleted inserted replaced
999:bbed8e9a5d33 1000:4fe8f9656107
42 gint isdir(const gchar *s); 42 gint isdir(const gchar *s);
43 gint islink(const gchar *s); 43 gint islink(const gchar *s);
44 gint64 filesize(const gchar *s); 44 gint64 filesize(const gchar *s);
45 time_t filetime(const gchar *s); 45 time_t filetime(const gchar *s);
46 gint filetime_set(const gchar *s, time_t tval); 46 gint filetime_set(const gchar *s, time_t tval);
47 gint access_file(const gchar *s, int mode); 47 gint access_file(const gchar *s, gint mode);
48 gint unlink_file(const gchar *s); 48 gint unlink_file(const gchar *s);
49 gint symlink_utf8(const gchar *source, const gchar *target); 49 gint symlink_utf8(const gchar *source, const gchar *target);
50 gint mkdir_utf8(const gchar *s, int mode); 50 gint mkdir_utf8(const gchar *s, gint mode);
51 gint rmdir_utf8(const gchar *s); 51 gint rmdir_utf8(const gchar *s);
52 gint copy_file_attributes(const gchar *s, const gchar *t, gint perms, gint mtime); 52 gint copy_file_attributes(const gchar *s, const gchar *t, gint perms, gint mtime);
53 gint copy_file(const gchar *s, const gchar *t); 53 gint copy_file(const gchar *s, const gchar *t);
54 gint move_file(const gchar *s, const gchar *t); 54 gint move_file(const gchar *s, const gchar *t);
55 gint rename_file(const gchar *s, const gchar *t); 55 gint rename_file(const gchar *s, const gchar *t);