aca0afd352
* gdesktop.c (desktop_icon_info_open): Launch a panel at the location of the mount point. * gmount.c (setup_devices): Use g_list_free, not g_free. Fed, test your fixes to my code ;-) * glayout.c (create_container): Add a Desktop menu if the WM is not GNOME compliant.
20 строки
434 B
C
20 строки
434 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 (int cleanup);
|
|
|
|
char *is_block_device_mountable (char *devname);
|
|
gboolean is_block_device_mounted (char *devname);
|
|
|
|
#endif
|