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

« back to all changes in this revision

Viewing changes to gio/gwin32volumemonitor.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
 * Copyright (C) 2008 Hans Breuer
5
5
 *
46
46
 *
47
47
 * Implementation of the #GMount interface for Win32 systems.
48
48
 */
49
 
typedef struct _GWin32Mount GWin32Mount;
 
49
typedef struct _GWin32Mount  GWin32Mount;
50
50
typedef struct _GWin32Volume GWin32Volume;
51
51
 
52
 
struct _GWin32VolumeMonitorClass {
 
52
struct _GWin32VolumeMonitorClass
 
53
{
53
54
  GNativeVolumeMonitorClass parent_class;
54
 
 
55
55
};
56
56
 
57
 
GType _g_win32_volume_monitor_get_type (void) G_GNUC_CONST;
 
57
GType            _g_win32_volume_monitor_get_type                     (void) G_GNUC_CONST;
58
58
 
59
59
GVolumeMonitor * _g_win32_volume_monitor_new                          (void);
60
 
GWin32Volume *    _g_win32_volume_monitor_lookup_volume_for_mount_path (GWin32VolumeMonitor *monitor,
61
 
                                                                      const char         *mount_path);
 
60
GWin32Volume   * _g_win32_volume_monitor_lookup_volume_for_mount_path (GWin32VolumeMonitor *monitor,
 
61
                                                                       const char          *mount_path);
62
62
 
63
63
G_END_DECLS
64
64
 
65
 
#endif
 
65
#endif /* __G_WIN32_VOLUME_MONITOR_H__ */