From 953132a87aed73507042a6279b343523741a1800 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Wed, 24 Sep 2008 12:40:53 +0000 Subject: Tagged for release 1.0.1 svn path=/tags/GVFS_1_0_1/; revision=2025 --- .../monitor/proxy/remote-volume-monitor-module.c | 64 ++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 gnome-2-24/monitor/proxy/remote-volume-monitor-module.c (limited to 'gnome-2-24/monitor/proxy/remote-volume-monitor-module.c') diff --git a/gnome-2-24/monitor/proxy/remote-volume-monitor-module.c b/gnome-2-24/monitor/proxy/remote-volume-monitor-module.c new file mode 100644 index 00000000..90945141 --- /dev/null +++ b/gnome-2-24/monitor/proxy/remote-volume-monitor-module.c @@ -0,0 +1,64 @@ +/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ +/* gvfs - extensions for gio + * + * Copyright (C) 2006-2008 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: David Zeuthen + */ + +#include + +#include +#include +#include +#include + +#include "gproxyvolumemonitor.h" +#include "gproxyvolume.h" +#include "gproxymount.h" +#include "gproxydrive.h" + +void +g_io_module_load (GIOModule *module) +{ + /* see gvfsproxyvolumemonitor.c:g_vfs_proxy_volume_monitor_daemon_init() */ + if (g_getenv ("GVFS_REMOTE_VOLUME_MONITOR_IGNORE") != NULL) + goto out; + + bindtextdomain (GETTEXT_PACKAGE, GVFS_LOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); + + g_proxy_drive_register (module); + g_proxy_mount_register (module); + g_proxy_volume_register (module); + g_proxy_volume_monitor_register (module); +out: + ; + } + +void +g_io_module_unload (GIOModule *module) +{ + if (g_getenv ("GVFS_REMOTE_VOLUME_MONITOR_IGNORE") != NULL) + goto out; + + g_proxy_volume_monitor_teardown_session_bus_connection (); + +out: + ; +} -- cgit v1.2.1