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