chiark / gitweb /
gudev: silent gtk-doc warnings
[elogind.git] / extras / gudev / gudevdevice.h
index 0ed3cf536448529f809f060159f5b83440a56126..d4873bad0fbb84a2deb07f84d44c208ee5984a5f 100644 (file)
@@ -41,7 +41,6 @@ typedef struct _GUdevDevicePrivate GUdevDevicePrivate;
 
 /**
  * GUdevDevice:
- * @parent: Parent instance.
  *
  * The #GUdevDevice struct is opaque and should not be accessed directly.
  */
@@ -76,6 +75,8 @@ struct _GUdevDeviceClass
 };
 
 GType               g_udev_device_get_type                  (void) G_GNUC_CONST;
+gboolean            g_udev_device_get_is_initialized        (GUdevDevice  *device);
+guint64             g_udev_device_get_usec_since_initialized (GUdevDevice  *device);
 const gchar        *g_udev_device_get_subsystem             (GUdevDevice  *device);
 const gchar        *g_udev_device_get_devtype               (GUdevDevice  *device);
 const gchar        *g_udev_device_get_name                  (GUdevDevice  *device);
@@ -120,6 +121,7 @@ gboolean            g_udev_device_get_sysfs_attr_as_boolean (GUdevDevice  *devic
                                                              const gchar  *name);
 const gchar* const *g_udev_device_get_sysfs_attr_as_strv    (GUdevDevice  *device,
                                                              const gchar  *name);
+const gchar* const *g_udev_device_get_tags                  (GUdevDevice  *device);
 
 G_END_DECLS