~ubuntu-branches/ubuntu/intrepid/glib2.0/intrepid-updates

« back to all changes in this revision

Viewing changes to gio/gunixmount.h

  • Committer: Bazaar Package Importer
  • Author(s): Loic Minier
  • Date: 2008-09-03 00:51:29 UTC
  • mfrom: (1.2.47 upstream)
  • Revision ID: james.westby@ubuntu.com-20080903005129-cuvzg72uin744gd6
Tags: 2.18.0-1
* New upstream stable release, with API addition.
  - Update symbols file for new g_object_get_type() symbol and drop
    g_slice_debug_tree_statistics() which shouldn't have been exported in
    the first place.
  - Refresh patches 01_gettext-desktopfiles,
    02_usr_share_gnome_applications, and 03_blacklist-directories to apply
    cleanly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* GIO - GLib Input, Output and Streaming Library
2
 
 * 
 
2
 *
3
3
 * Copyright (C) 2006-2007 Red Hat, Inc.
4
4
 *
5
5
 * This library is free software; you can redistribute it and/or
38
38
 
39
39
typedef struct _GUnixMountClass GUnixMountClass;
40
40
 
41
 
struct _GUnixMountClass {
42
 
   GObjectClass parent_class;
 
41
struct _GUnixMountClass
 
42
{
 
43
  GObjectClass parent_class;
43
44
};
44
45
 
45
 
GType _g_unix_mount_get_type (void) G_GNUC_CONST;
 
46
GType        _g_unix_mount_get_type       (void) G_GNUC_CONST;
46
47
 
47
 
GUnixMount *_g_unix_mount_new                    (GVolumeMonitor       *volume_monitor,
48
 
                                                  GUnixMountEntry      *mount_entry,
49
 
                                                  GUnixVolume          *volume);
50
 
gboolean     _g_unix_mount_has_mount_path        (GUnixMount           *mount,
51
 
                                                  const char           *mount_path);
52
 
void         _g_unix_mount_unset_volume          (GUnixMount            *mount,
53
 
                                                  GUnixVolume           *volume);
54
 
void         _g_unix_mount_unmounted             (GUnixMount           *mount);
 
48
GUnixMount * _g_unix_mount_new            (GVolumeMonitor  *volume_monitor,
 
49
                                           GUnixMountEntry *mount_entry,
 
50
                                           GUnixVolume     *volume);
 
51
gboolean     _g_unix_mount_has_mount_path (GUnixMount      *mount,
 
52
                                           const char      *mount_path);
 
53
void         _g_unix_mount_unset_volume   (GUnixMount      *mount,
 
54
                                           GUnixVolume     *volume);
 
55
void         _g_unix_mount_unmounted      (GUnixMount      *mount);
55
56
 
56
57
G_END_DECLS
57
58