Initial version of GResource
[platform/upstream/glib.git] / gio / gpollfilemonitor.h
index 2d4e2a3..6537f5a 100644 (file)
@@ -1,5 +1,5 @@
 /* GIO - GLib Input, Output and Streaming Library
- * 
+ *
  * Copyright (C) 2006-2007 Red Hat, Inc.
  *
  * This library is free software; you can redistribute it and/or
 #ifndef __G_POLL_FILE_MONITOR_H__
 #define __G_POLL_FILE_MONITOR_H__
 
-#include <glib-object.h>
 #include <gio/gfilemonitor.h>
 
 G_BEGIN_DECLS
 
-#define G_TYPE_POLL_FILE_MONITOR               (g_poll_file_monitor_get_type ())
+#define G_TYPE_POLL_FILE_MONITOR               (_g_poll_file_monitor_get_type ())
 #define G_POLL_FILE_MONITOR(o)                 (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_POLL_FILE_MONITOR, GPollFileMonitor))
 #define G_POLL_FILE_MONITOR_CLASS(k)           (G_TYPE_CHECK_CLASS_CAST ((k), G_TYPE_POLL_FILE_MONITOR, GPollFileMonitorClass))
 #define G_IS_POLL_FILE_MONITOR(o)              (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_POLL_FILE_MONITOR))
@@ -37,13 +36,14 @@ G_BEGIN_DECLS
 typedef struct _GPollFileMonitor      GPollFileMonitor;
 typedef struct _GPollFileMonitorClass GPollFileMonitorClass;
 
-struct _GPollFileMonitorClass {
+struct _GPollFileMonitorClass
+{
   GFileMonitorClass parent_class;
 };
 
-GType g_poll_file_monitor_get_type (void) G_GNUC_CONST;
+GType          _g_poll_file_monitor_get_type (void) G_GNUC_CONST;
 
-GFileMonitor* g_poll_file_monitor_new (GFile *file);
+GFileMonitor * _g_poll_file_monitor_new      (GFile *file);
 
 G_END_DECLS