X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fglocalfilemonitor.h;h=aed2e9cd19410161068df2b50705976025317ea3;hb=7103484017ff000d01ed94567539d37fa09b32b2;hp=2c1b7946660b7da9d33cd98e76ed355968bb1623;hpb=6be54e9f56e9344ecd55a8952dff957573a136b7;p=platform%2Fupstream%2Fglib.git diff --git a/gio/glocalfilemonitor.h b/gio/glocalfilemonitor.h index 2c1b794..aed2e9c 100644 --- a/gio/glocalfilemonitor.h +++ b/gio/glocalfilemonitor.h @@ -13,9 +13,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. + * Public License along with this library; if not, see . * * Author: Alexander Larsson */ @@ -32,6 +30,7 @@ G_BEGIN_DECLS #define G_LOCAL_FILE_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), G_TYPE_LOCAL_FILE_MONITOR, GLocalFileMonitorClass)) #define G_IS_LOCAL_FILE_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_LOCAL_FILE_MONITOR)) #define G_IS_LOCAL_FILE_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_LOCAL_FILE_MONITOR)) +#define G_LOCAL_FILE_MONITOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_LOCAL_FILE_MONITOR, GLocalFileMonitorClass)) #define G_LOCAL_FILE_MONITOR_EXTENSION_POINT_NAME "gio-local-file-monitor" #define G_NFS_FILE_MONITOR_EXTENSION_POINT_NAME "gio-nfs-file-monitor" @@ -52,6 +51,7 @@ struct _GLocalFileMonitorClass GFileMonitorClass parent_class; gboolean (* is_supported) (void); + void (* start) (GLocalFileMonitor *local_monitor); }; #ifdef G_OS_UNIX @@ -61,8 +61,16 @@ GType g_local_file_monitor_get_type (void) G_GNUC_CONST; GFileMonitor * _g_local_file_monitor_new (const char *pathname, GFileMonitorFlags flags, + GMainContext *context, gboolean is_remote_fs, + gboolean do_start, GError **error); +void g_local_file_monitor_start (GLocalFileMonitor *local_monitor); + +/* Actually in glocalfile.c */ +GLocalFileMonitor * g_local_file_monitor_new_in_worker (const char *pathname, + GFileMonitorFlags flags, + GError **error); G_END_DECLS