1999-02-18 00:07:26 +00:00
|
|
|
/* Mount/umount support for the Midnight Commander
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998-1999 The Free Software Foundation
|
|
|
|
*
|
1999-02-18 21:43:07 +00:00
|
|
|
* Authors: Miguel de Icaza <miguel@nuclecu.unam.mx>
|
|
|
|
* Federico Mena <federico@nuclecu.unam.mx>
|
1999-02-18 00:07:26 +00:00
|
|
|
*/
|
|
|
|
|
1999-02-17 02:18:12 +00:00
|
|
|
#ifndef GMOUNT_H
|
|
|
|
#define GMOUNT_H
|
|
|
|
|
1999-02-18 00:07:26 +00:00
|
|
|
#include <glib.h>
|
|
|
|
|
1999-02-25 05:11:35 +00:00
|
|
|
void gmount_setup_devices (void);
|
|
|
|
void desktop_cleanup_devices (void);
|
1999-02-18 21:43:07 +00:00
|
|
|
|
1999-03-11 07:53:26 +00:00
|
|
|
char *is_block_device_mountable (char *mount_point);
|
|
|
|
gboolean is_block_device_mounted (char *mount_point);
|
|
|
|
char *mount_point_to_device (char *mount_point);
|
1999-02-17 02:18:12 +00:00
|
|
|
|
|
|
|
#endif
|