1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
2  *
3  * Copyright (C) 2008-2010 David Zeuthen <zeuthen@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  */
20 
21 #ifndef __UDISKS_MOUNT_MONITOR_H__
22 #define __UDISKS_MOUNT_MONITOR_H__
23 
24 #include "udisksdaemontypes.h"
25 
26 G_BEGIN_DECLS
27 
28 #define UDISKS_TYPE_MOUNT_MONITOR         (udisks_mount_monitor_get_type ())
29 #define UDISKS_MOUNT_MONITOR(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), UDISKS_TYPE_MOUNT_MONITOR, UDisksMountMonitor))
30 #define UDISKS_IS_MOUNT_MONITOR(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), UDISKS_TYPE_MOUNT_MONITOR))
31 
32 GType                udisks_mount_monitor_get_type           (void) G_GNUC_CONST;
33 UDisksMountMonitor  *udisks_mount_monitor_new                (void);
34 GList               *udisks_mount_monitor_get_mounts_for_dev (UDisksMountMonitor  *monitor,
35                                                               dev_t                dev);
36 gboolean             udisks_mount_monitor_is_dev_in_use      (UDisksMountMonitor  *monitor,
37                                                               dev_t                dev,
38                                                               UDisksMountType     *out_type);
39 UDisksMount         *udisks_mount_monitor_get_mount_for_path (UDisksMountMonitor  *monitor,
40                                                               const gchar         *mount_path);
41 
42 G_END_DECLS
43 
44 #endif /* __UDISKS_MOUNT_MONITOR_H__ */
45