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

« back to all changes in this revision

Viewing changes to gio/glocalfilemonitor.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
23
23
#ifndef __G_LOCAL_FILE_MONITOR_H__
24
24
#define __G_LOCAL_FILE_MONITOR_H__
25
25
 
26
 
#include <glib-object.h>
27
26
#include <gio/gfilemonitor.h>
28
27
 
29
28
G_BEGIN_DECLS
42
41
struct _GLocalFileMonitor
43
42
{
44
43
  GFileMonitor parent_instance;
 
44
 
45
45
  gchar *filename;
46
46
};
47
47
 
48
 
struct _GLocalFileMonitorClass {
 
48
struct _GLocalFileMonitorClass
 
49
{
49
50
  GFileMonitorClass parent_class;
50
 
  gboolean (*is_supported) (void);
 
51
 
 
52
  gboolean (* is_supported) (void);
51
53
};
52
54
 
53
 
GType g_local_file_monitor_get_type (void) G_GNUC_CONST;
 
55
GType           g_local_file_monitor_get_type (void) G_GNUC_CONST;
54
56
 
55
 
GFileMonitor* _g_local_file_monitor_new (const char         *pathname,
56
 
                                         GFileMonitorFlags   flags,
57
 
                                         GError            **error);
 
57
GFileMonitor * _g_local_file_monitor_new      (const char         *pathname,
 
58
                                               GFileMonitorFlags   flags,
 
59
                                               GError            **error);
58
60
 
59
61
G_END_DECLS
60
62