~ubuntu-branches/debian/squeeze/glib2.0/squeeze

« back to all changes in this revision

Viewing changes to gio/gunixvolumemonitor.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-02-15 13:00:43 UTC
  • mfrom: (1.3.1 upstream) (69.1.10 intrepid)
  • Revision ID: james.westby@ubuntu.com-20090215130043-q47fbt3owmt42m2f
Tags: 2.18.4-2
* Release to unstable
* debian/rules:
- bump SHVER, since we are already forcing a 2.18.0 dependecy on the
  symbols introduced in the development versions
* debian/control.in:
- added Homepage and Vcs-* control fields

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
24
24
#ifndef __G_UNIX_VOLUME_MONITOR_H__
25
25
#define __G_UNIX_VOLUME_MONITOR_H__
26
26
 
27
 
#include <glib-object.h>
28
27
#include <gio/gnativevolumemonitor.h>
29
28
 
30
29
G_BEGIN_DECLS
35
34
#define G_IS_UNIX_VOLUME_MONITOR(o)       (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_UNIX_VOLUME_MONITOR))
36
35
#define G_IS_UNIX_VOLUME_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_UNIX_VOLUME_MONITOR))
37
36
 
38
 
typedef struct _GUnixVolumeMonitor GUnixVolumeMonitor;
 
37
typedef struct _GUnixVolumeMonitor      GUnixVolumeMonitor;
39
38
typedef struct _GUnixVolumeMonitorClass GUnixVolumeMonitorClass;
40
39
 
41
40
/* Forward definitions */
48
47
typedef struct _GUnixMount GUnixMount;
49
48
typedef struct _GUnixVolume GUnixVolume;
50
49
 
51
 
struct _GUnixVolumeMonitorClass {
 
50
struct _GUnixVolumeMonitorClass
 
51
{
52
52
  GNativeVolumeMonitorClass parent_class;
53
 
 
54
53
};
55
54
 
56
 
GType _g_unix_volume_monitor_get_type (void) G_GNUC_CONST;
 
55
GType            _g_unix_volume_monitor_get_type                     (void) G_GNUC_CONST;
57
56
 
58
57
GVolumeMonitor * _g_unix_volume_monitor_new                          (void);
59
 
GUnixVolume *    _g_unix_volume_monitor_lookup_volume_for_mount_path (GUnixVolumeMonitor *monitor,
 
58
GUnixVolume    * _g_unix_volume_monitor_lookup_volume_for_mount_path (GUnixVolumeMonitor *monitor,
60
59
                                                                      const char         *mount_path);
61
60
 
62
61
G_END_DECLS