mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
21 lines
464 B
C
21 lines
464 B
C
/* Mount/umount support for the Midnight Commander
|
|
*
|
|
* Copyright (C) 1998-1999 The Free Software Foundation
|
|
*
|
|
* Authors: Miguel de Icaza <miguel@nuclecu.unam.mx>
|
|
* Federico Mena <federico@nuclecu.unam.mx>
|
|
*/
|
|
|
|
#ifndef GMOUNT_H
|
|
#define GMOUNT_H
|
|
|
|
#include <glib.h>
|
|
|
|
void gmount_setup_devices (void);
|
|
void desktop_cleanup_devices (void);
|
|
|
|
char *is_block_device_mountable (char *devname);
|
|
gboolean is_block_device_mounted (char *devname);
|
|
|
|
#endif
|