~ubuntu-branches/ubuntu/jaunty/gvfs/jaunty-updates

« back to all changes in this revision

Viewing changes to common/gvfsmountinfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-03-02 18:10:40 UTC
  • mfrom: (1.1.37 upstream)
  • Revision ID: james.westby@ubuntu.com-20090302181040-bozliyntjtpd0ozp
Tags: 1.1.7-0ubuntu1
* New upstream version:
  - Fix build on some platforms
  - ftp: Fix short read errors (lp: #208750)
  - gphoto2: Make it work on iphone
  - sftp: Fix symlink creation
  - fuse: Better support of truncation, fixing OOo save (lp: #317587)
  - proxy monitors: Support mount operations, etc
  - gvfs-mount: add --device commandline support
  - sftp: Fix protocol bug that made some servers not work (lp: #286053)
  - general support for query_info over streams, implemented for smb, sftp
  - Initial support for .xdg-volume-info reading (lp: #269159)
  - fix trash crasher (lp: #332554)
  - use ssh config (lp: #264803)
* debian/patches/02_support_xdg_volume_info.patch:
  - the new version fixes this issue
* debian/patches/91_upstream_change_fix_trash_crasher.patch:
  - upstream change to fix a trash crasher (lp: #333791)
* debian/rules:
  - shlibs version update

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
 
2
/* GIO - GLib Input, Output and Streaming Library
 
3
 *
 
4
 * Copyright (C) 2009 Red Hat, Inc.
 
5
 *
 
6
 * This library is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Lesser General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2 of the License, or (at your option) any later version.
 
10
 *
 
11
 * This library is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * Lesser General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Lesser General
 
17
 * Public License along with this library; if not, write to the
 
18
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 
19
 * Boston, MA 02111-1307, USA.
 
20
 *
 
21
 * Author: David Zeuthen <davidz@redhat.com>
 
22
 */
 
23
 
 
24
#ifndef __G_VFS_MOUNT_INFO_H__
 
25
#define __G_VFS_MOUNT_INFO_H__
 
26
 
 
27
#include <gio/gio.h>
 
28
 
 
29
G_BEGIN_DECLS
 
30
 
 
31
void g_vfs_mount_info_query_autorun_info (GFile               *directory,
 
32
                                          GCancellable        *cancellable,
 
33
                                          GAsyncReadyCallback  callback,
 
34
                                          gpointer             user_data);
 
35
 
 
36
GIcon *g_vfs_mount_info_query_autorun_info_finish (GFile          *directory,
 
37
                                                   GAsyncResult   *res,
 
38
                                                   GError        **error);
 
39
 
 
40
void g_vfs_mount_info_query_xdg_volume_info (GFile               *directory,
 
41
                                             GCancellable        *cancellable,
 
42
                                             GAsyncReadyCallback  callback,
 
43
                                             gpointer             user_data);
 
44
 
 
45
GIcon *g_vfs_mount_info_query_xdg_volume_info_finish (GFile          *directory,
 
46
                                                      GAsyncResult   *res,
 
47
                                                      gchar         **out_name,
 
48
                                                      GError        **error);
 
49
 
 
50
G_END_DECLS
 
51
 
 
52
#endif /* __G_VFS_MOUNT_INFO_H__ */