r68: Added full Adjust actions for files/dirs/apps for windows and panels.
[rox-filer.git] / ROX-Filer / src / mount.h
blob5b0f42f737065a801ca02bbda4f5c6239d3b65ae
1 /* vi: set cindent:
2 * $Id$
4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@ecs.soton.ac.uk>.
6 */
8 #ifndef _MOUNT_H
9 #define _MOUNT_H
11 extern GHashTable *fstab_mounts;
12 extern GHashTable *mtab_mounts;
14 typedef struct _MountPoint MountPoint;
16 struct _MountPoint
18 char *name; /* eg: /dev/hda4 */
19 char *dir; /* eg: /home */
22 /* Prototypes */
23 void mount_init();
24 void mount_update();
26 #endif /* _MOUNT_H */