Updated Dutch translation Master 3.26
[platform/upstream/at-spi2-core.git] / atspi / atspi-event-listener.h
index 99f3ca1..ee52fac 100644 (file)
@@ -42,7 +42,7 @@ GType atspi_event_get_type (void);
  * A function prototype for callbacks via which clients are notified of AT-SPI events.
  * 
  **/
-typedef void       (*AtspiEventListenerCB)     (const AtspiEvent     *event,
+typedef void       (*AtspiEventListenerCB)     (AtspiEvent     *event,
                                                     void                      *user_data);
 
 /**
@@ -93,6 +93,12 @@ atspi_event_listener_register (AtspiEventListener *listener,
                                 GError **error);
 
 gboolean
+atspi_event_listener_register_full (AtspiEventListener *listener,
+                                     const gchar              *event_type,
+                                      GArray *properties,
+                                     GError **error);
+
+gboolean
 atspi_event_listener_register_from_callback (AtspiEventListenerCB callback,
                                             void *user_data,
                                             GDestroyNotify callback_destroyed,
@@ -100,6 +106,14 @@ atspi_event_listener_register_from_callback (AtspiEventListenerCB callback,
                                             GError **error);
 
 gboolean
+atspi_event_listener_register_from_callback_full (AtspiEventListenerCB callback,
+                                                 void *user_data,
+                                                 GDestroyNotify callback_destroyed,
+                                                 const gchar              *event_type,
+                                                  GArray *properties,
+                                                 GError **error);
+
+gboolean
 atspi_event_listener_register_no_data (AtspiEventListenerSimpleCB callback,
                                 GDestroyNotify callback_destroyed,
                                 const gchar              *event_type,