Editor: sync with new global config location (user menu and syntax files).
[midnight-commander.git] / src / vfsdummy.h
blobb7bd7f058b82d7e21a62e6d213269c40c5cd5266
2 /** \file vfsdummy.h
3 * \brief Header: replacement for vfs.h if VFS support is disabled
4 */
6 #ifndef MC_VFSDUMMY_H
7 #define MC_VFSDYMMY_H
9 /* Flags of VFS classes */
10 #define VFSF_LOCAL 1 /* Class is local (not virtual) filesystem */
11 #define VFSF_NOLINKS 2 /* Hard links not supported */
13 #define O_LINEAR 0
15 #define mc_close close
16 #define mc_read read
17 #define mc_write write
18 #define mc_lseek lseek
19 #define mc_opendir opendir
20 #define mc_readdir readdir
21 #define mc_closedir closedir
23 #define mc_stat stat
24 #define mc_mknod mknod
25 #define mc_link link
26 #define mc_mkdir mkdir
27 #define mc_rmdir rmdir
28 #define mc_fstat fstat
29 #define mc_lstat lstat
31 #define mc_readlink readlink
32 #define mc_symlink symlink
33 #define mc_rename rename
35 #define mc_open open
36 #define mc_utime utime
37 #define mc_chmod chmod
38 #define mc_chown chown
39 #define mc_chdir chdir
40 #define mc_unlink unlink
42 static inline int
43 return_zero (void)
45 return 0;
48 #define mc_ctl(a,b,c) return_zero()
49 #define mc_setctl(a,b,c) return_zero()
51 #define mc_get_current_wd(x,size) get_current_wd (x, size)
52 #define mc_getlocalcopy(x) vfs_canon(x)
53 #define mc_ungetlocalcopy(x,y,z) do { } while (0)
55 #define vfs_init() do { } while (0)
56 #define vfs_shut() do { } while (0)
58 #define vfs_current_is_local() 1
59 #define vfs_file_is_local(x) 1
60 #define vfs_strip_suffix_from_filename(x) g_strdup(x)
62 #define vfs_file_class_flags(x) (VFSF_LOCAL)
63 #define vfs_get_class(x) (struct vfs_class *)(NULL)
65 #define vfs_translate_url(s) g_strdup(s)
66 #define vfs_release_path(x)
67 #define vfs_add_current_stamps() do { } while (0)
68 #define vfs_timeout_handler() do { } while (0)
69 #define vfs_timeouts() 0
71 static inline char *
72 vfs_canon (const char *path)
74 char *p = g_strdup (path);
75 canonicalize_pathname(p);
76 return p;
79 #endif