summaryrefslogtreecommitdiff
path: root/common/gmountoperationdbus.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/gmountoperationdbus.h')
-rw-r--r--common/gmountoperationdbus.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/common/gmountoperationdbus.h b/common/gmountoperationdbus.h
new file mode 100644
index 00000000..986552e4
--- /dev/null
+++ b/common/gmountoperationdbus.h
@@ -0,0 +1,41 @@
+#ifndef __G_MOUNT_OPERATION_DBUS_H__
+#define __G_MOUNT_OPERATION_DBUS_H__
+
+#include <sys/stat.h>
+
+#include <glib-object.h>
+#include <gio/gmountoperation.h>
+#include <dbus/dbus.h>
+
+G_BEGIN_DECLS
+
+#define G_TYPE_MOUNT_OPERATION_DBUS (g_mount_operation_dbus_get_type ())
+#define G_MOUNT_OPERATION_DBUS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_MOUNT_OPERATION_DBUS, GMountOperationDBus))
+#define G_MOUNT_OPERATION_DBUS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_MOUNT_OPERATION_DBUS, GMountOperationDBusClass))
+#define G_IS_MOUNT_OPERATION_DBUS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_MOUNT_OPERATION_DBUS))
+#define G_IS_MOUNT_OPERATION_DBUS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_MOUNT_OPERATION_DBUS))
+#define G_MOUNT_OPERATION_DBUS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_MOUNT_OPERATION_DBUS, GMountOperationDBusClass))
+
+typedef struct _GMountOperationDBus GMountOperationDBus;
+typedef struct _GMountOperationDBusClass GMountOperationDBusClass;
+
+struct _GMountOperationDBus
+{
+ GMountOperation parent_instance;
+
+ char *obj_path;
+ DBusConnection *connection;
+};
+
+struct _GMountOperationDBusClass
+{
+ GMountOperationClass parent_class;
+};
+
+GType g_mount_operation_dbus_get_type (void) G_GNUC_CONST;
+
+GMountOperationDBus * g_mount_operation_dbus_new (void);
+
+G_END_DECLS
+
+#endif /* __G_MOUNT_OPERATION_DBUS_H__ */