summaryrefslogtreecommitdiff
path: root/client/gdaemonvfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/gdaemonvfs.h')
-rw-r--r--client/gdaemonvfs.h73
1 files changed, 0 insertions, 73 deletions
diff --git a/client/gdaemonvfs.h b/client/gdaemonvfs.h
deleted file mode 100644
index 3b17b880..00000000
--- a/client/gdaemonvfs.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/* GIO - GLib Input, Output and Streaming Library
- *
- * Copyright (C) 2006-2007 Red Hat, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General
- * Public License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
- * Boston, MA 02111-1307, USA.
- *
- * Author: Alexander Larsson <alexl@redhat.com>
- */
-
-#ifndef __G_DAEMON_VFS_H__
-#define __G_DAEMON_VFS_H__
-
-#include <gio/gio.h>
-#include <dbus/dbus.h>
-#include "gmountspec.h"
-#include "gmounttracker.h"
-#include "gvfsuriutils.h"
-
-G_BEGIN_DECLS
-
-#define G_TYPE_DAEMON_VFS (g_daemon_vfs_get_type ())
-#define G_DAEMON_VFS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_DAEMON_VFS, GDaemonVfs))
-#define G_DAEMON_VFS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), G_TYPE_DAEMON_VFS, GDaemonVfsClass))
-#define G_IS_DAEMON_VFS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_DAEMON_VFS))
-#define G_IS_DAEMON_VFS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_DAEMON_VFS))
-#define G_DAEMON_VFS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_DAEMON_VFS, GDaemonVfsClass))
-
-typedef struct _GDaemonVfs GDaemonVfs;
-typedef struct _GDaemonVfsClass GDaemonVfsClass;
-
-typedef void (*GMountInfoLookupCallback) (GMountInfo *mount_info,
- gpointer data,
- GError *error);
-
-GType g_daemon_vfs_get_type (void);
-
-GDaemonVfs *g_daemon_vfs_new (void);
-
-char * _g_daemon_vfs_get_uri_for_mountspec (GMountSpec *spec,
- char *path,
- gboolean allow_utf8);
-const char * _g_daemon_vfs_mountspec_get_uri_scheme (GMountSpec *spec);
-void _g_daemon_vfs_get_mount_info_async (GMountSpec *spec,
- const char *path,
- GMountInfoLookupCallback callback,
- gpointer user_data);
-GMountInfo * _g_daemon_vfs_get_mount_info_sync (GMountSpec *spec,
- const char *path,
- GError **error);
-GMountSpec * _g_daemon_vfs_get_mount_spec_for_path (GMountSpec *spec,
- const char *path,
- const char *new_path);
-void _g_daemon_vfs_invalidate_dbus_id (const char *dbus_id);
-DBusConnection *_g_daemon_vfs_get_async_bus (void);
-
-
-
-G_END_DECLS
-
-#endif /* __G_DAEMON_VFS_H__ */