atspi-accessible.h   atspi-accessible.h 
skipping to change at line 83 skipping to change at line 83
gchar * atspi_accessible_get_description (AtspiAccessible *obj, GError **er ror); gchar * atspi_accessible_get_description (AtspiAccessible *obj, GError **er ror);
AtspiAccessible * atspi_accessible_get_parent (AtspiAccessible *obj, GError **error); AtspiAccessible * atspi_accessible_get_parent (AtspiAccessible *obj, GError **error);
gint atspi_accessible_get_child_count (AtspiAccessible *obj, GError **error ); gint atspi_accessible_get_child_count (AtspiAccessible *obj, GError **error );
AtspiAccessible * atspi_accessible_get_child_at_index (AtspiAccessible *obj , gint child_index, GError **error); AtspiAccessible * atspi_accessible_get_child_at_index (AtspiAccessible *obj , gint child_index, GError **error);
gint atspi_accessible_get_index_in_parent (AtspiAccessible *obj, GError **e rror); gint atspi_accessible_get_index_in_parent (AtspiAccessible *obj, GError **e rror);
GArray * atspi_accessible_get_relation_set (AtspiAccessible *obj, GError ** error); GPtrArray * atspi_accessible_get_relation_set (AtspiAccessible *obj, GError **error);
AtspiRole atspi_accessible_get_role (AtspiAccessible *obj, GError **error); AtspiRole atspi_accessible_get_role (AtspiAccessible *obj, GError **error);
gchar * atspi_accessible_get_role_name (AtspiAccessible *obj, GError **erro r); gchar * atspi_accessible_get_role_name (AtspiAccessible *obj, GError **erro r);
gchar * atspi_accessible_get_localized_role_name (AtspiAccessible *obj, GEr ror **error); gchar * atspi_accessible_get_localized_role_name (AtspiAccessible *obj, GEr ror **error);
AtspiStateSet * atspi_accessible_get_state_set (AtspiAccessible *obj); AtspiStateSet * atspi_accessible_get_state_set (AtspiAccessible *obj);
GHashTable * atspi_accessible_get_attributes (AtspiAccessible *obj, GError **error); GHashTable * atspi_accessible_get_attributes (AtspiAccessible *obj, GError **error);
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 atspi-constants.h   atspi-constants.h 
skipping to change at line 1171 skipping to change at line 1171
ATSPI_CACHE_INTERFACES = 1 << 6, ATSPI_CACHE_INTERFACES = 1 << 6,
ATSPI_CACHE_ATTRIBUTES = 1 << 7, ATSPI_CACHE_ATTRIBUTES = 1 << 7,
ATSPI_CACHE_ALL = 0x3fffffff, ATSPI_CACHE_ALL = 0x3fffffff,
ATSPI_CACHE_DEFAULT = ATSPI_CACHE_PARENT | ATSPI_CACHE_CHILDREN | ATSPI_CACHE_DEFAULT = ATSPI_CACHE_PARENT | ATSPI_CACHE_CHILDREN |
ATSPI_CACHE_NAME | ATSPI_CACHE_DESCRIPTION | ATSPI_CACHE_NAME | ATSPI_CACHE_DESCRIPTION |
ATSPI_CACHE_STATES | ATSPI_CACHE_ROLE | ATSPI_CACHE_STATES | ATSPI_CACHE_ROLE |
ATSPI_CACHE_INTERFACES, ATSPI_CACHE_INTERFACES,
ATSPI_CACHE_UNDEFINED = 0x40000000, ATSPI_CACHE_UNDEFINED = 0x40000000,
} AtspiCache; } AtspiCache;
#define ATSPI_DBUS_NAME_REGISTRY "org.a11y.atspi.Registry"
#define ATSPI_DBUS_PATH_REGISTRY "/org/a11y/atspi/registry"
#define ATSPI_DBUS_INTERFACE_REGISTRY "org.a11y.atspi.Registry"
#define ATSPI_DBUS_PATH_NULL "/org/a11y/atspi/null"
#define ATSPI_DBUS_PATH_ROOT "/org/a11y/atspi/accessible/root"
#define ATSPI_DBUS_PATH_DEC "/org/a11y/atspi/registry/deviceeventcontroller
"
#define ATSPI_DBUS_INTERFACE_DEC "org.a11y.atspi.DeviceEventController"
#define ATSPI_DBUS_INTERFACE_DEVICE_EVENT_LISTENER "org.a11y.atspi.DeviceEv
entListener"
#define ATSPI_DBUS_INTERFACE_CACHE "org.a11y.atspi.Cache"
#define ATSPI_DBUS_INTERFACE_ACCESSIBLE "org.a11y.atspi.Accessible"
#define ATSPI_DBUS_INTERFACE_ACTION "org.a11y.atspi.Action"
#define ATSPI_DBUS_INTERFACE_APPLICATION "org.a11y.atspi.Application"
#define ATSPI_DBUS_INTERFACE_COLLECTION "org.a11y.atspi.Collection"
#define ATSPI_DBUS_INTERFACE_COMPONENT "org.a11y.atspi.Component"
#define ATSPI_DBUS_INTERFACE_DOCUMENT "org.a11y.atspi.Document"
#define ATSPI_DBUS_INTERFACE_EDITABLE_TEXT "org.a11y.atspi.EditableText"
#define ATSPI_DBUS_INTERFACE_EVENT_KEYBOARD "org.a11y.atspi.Event.Keyboard"
#define ATSPI_DBUS_INTERFACE_EVENT_MOUSE "org.a11y.atspi.Event.Mouse"
#define ATSPI_DBUS_INTERFACE_EVENT_OBJECT "org.a11y.atspi.Event.Object"
#define ATSPI_DBUS_INTERFACE_HYPERLINK "org.a11y.atspi.Hyperlink"
#define ATSPI_DBUS_INTERFACE_HYPERTEXT "org.a11y.atspi.Hypertext"
#define ATSPI_DBUS_INTERFACE_IMAGE "org.a11y.atspi.Image"
#define ATSPI_DBUS_INTERFACE_SELECTION "org.a11y.atspi.Selection"
#define ATSPI_DBUS_INTERFACE_TABLE "org.a11y.atspi.Table"
#define ATSPI_DBUS_INTERFACE_TEXT "org.a11y.atspi.Text"
#define ATSPI_DBUS_INTERFACE_VALUE "org.a11y.atspi.Value"
#define ATSPI_DBUS_INTERFACE_SOCKET "org.a11y.atspi.Socket"
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
#endif /* _ATSPI_CONSTANTS_H_ */ #endif /* _ATSPI_CONSTANTS_H_ */
 End of changes. 1 change blocks. 
0 lines changed or deleted 33 lines changed or added


 atspi-device-listener-private.h   atspi-device-listener-private.h 
skipping to change at line 35 skipping to change at line 35
#ifndef _ATSPI_DEVICE_LISTENER_PRIVATE_H_ #ifndef _ATSPI_DEVICE_LISTENER_PRIVATE_H_
#define _ATSPI_DEVICE_LISTENER_PRIVATE_H_ #define _ATSPI_DEVICE_LISTENER_PRIVATE_H_
#include "atspi-device-listener.h" #include "atspi-device-listener.h"
#include "dbus/dbus.h" #include "dbus/dbus.h"
DBusHandlerResult _atspi_dbus_handle_DeviceEvent (DBusConnection *bus, DBus Message *message, void *data); DBusHandlerResult _atspi_dbus_handle_DeviceEvent (DBusConnection *bus, DBus Message *message, void *data);
gchar *_atspi_device_listener_get_path (AtspiDeviceListener *listener); gchar *_atspi_device_listener_get_path (AtspiDeviceListener *listener);
DBusHandlerResult
atspi_dbus_handle_DeviceEvent (DBusConnection *bus, DBusMessage *message, v
oid *data);
#endif /* _ATSPI_DEVICE_LISTENER_H_ */ #endif /* _ATSPI_DEVICE_LISTENER_H_ */
 End of changes. 1 change blocks. 
4 lines changed or deleted 0 lines changed or added


 atspi-event-listener-private.h   atspi-event-listener-private.h 
skipping to change at line 37 skipping to change at line 37
#define _ATSPI_EVENT_LISTENER_PRIVATE_H_ #define _ATSPI_EVENT_LISTENER_PRIVATE_H_
#include "atspi-event-listener.h" #include "atspi-event-listener.h"
#include "dbus/dbus.h" #include "dbus/dbus.h"
DBusHandlerResult _atspi_dbus_handle_Event (DBusConnection *bus, DBusMessag e *message, void *data); DBusHandlerResult _atspi_dbus_handle_Event (DBusConnection *bus, DBusMessag e *message, void *data);
void _atspi_send_event (AtspiEvent *e); void _atspi_send_event (AtspiEvent *e);
DBusHandlerResult atspi_dbus_handle_event (DBusConnection *bus, DBusMessage *message, void *data); DBusHandlerResult _atspi_dbus_handle_event (DBusConnection *bus, DBusMessag e *message, void *data);
#endif /* _ATSPI_EVENT_LISTENER_H_ */ #endif /* _ATSPI_EVENT_LISTENER_H_ */
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 atspi-hyperlink.h   atspi-hyperlink.h 
skipping to change at line 57 skipping to change at line 57
typedef struct _AtspiHyperlinkClass AtspiHyperlinkClass; typedef struct _AtspiHyperlinkClass AtspiHyperlinkClass;
struct _AtspiHyperlinkClass struct _AtspiHyperlinkClass
{ {
AtspiObjectClass parent_class; AtspiObjectClass parent_class;
}; };
GType atspi_hyperlink_get_type (void); GType atspi_hyperlink_get_type (void);
AtspiHyperlink * AtspiHyperlink *
atspi_hyperlink_new (AtspiApplication *app, const gchar *path); _atspi_hyperlink_new (AtspiApplication *app, const gchar *path);
gint atspi_hyperlink_get_n_anchors (AtspiHyperlink *obj, GError **error); gint atspi_hyperlink_get_n_anchors (AtspiHyperlink *obj, GError **error);
gchar * atspi_hyperlink_get_uri (AtspiHyperlink *obj, int i, GError **error ); gchar * atspi_hyperlink_get_uri (AtspiHyperlink *obj, int i, GError **error );
AtspiAccessible* atspi_hyperlink_get_object (AtspiHyperlink *obj, gint i, G Error **error); AtspiAccessible* atspi_hyperlink_get_object (AtspiHyperlink *obj, gint i, G Error **error);
AtspiRange * atspi_hyperlink_get_index_range (AtspiHyperlink *obj, GError * *error); AtspiRange * atspi_hyperlink_get_index_range (AtspiHyperlink *obj, GError * *error);
gint atspi_hyperlink_get_start_index (AtspiHyperlink *obj, GError **error); gint atspi_hyperlink_get_start_index (AtspiHyperlink *obj, GError **error);
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/