7aec2adddf
* gmain.h: Removed set_current_panel() since it was never used. * glayout.c (set_current_panel): Made static and renamed from set_new_current_panel(). Removed old toolbar cruft. * gmount.c (get_mountable_devices): Made static. * Makefile.in (ICONS): Added i-floppy.png, i-cdrom.png, i-printer.png. Thanks, Tigert!
22 строки
447 B
C
22 строки
447 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);
|
|
|
|
#if 0
|
|
gboolean is_block_device_mountable (char *devname);
|
|
gboolean is_block_device_mounted (char *devname);
|
|
#endif
|
|
|
|
#endif
|