atspi-application.h   atspi-application.h 
skipping to change at line 31 skipping to change at line 31
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifndef _ATSPI_APPLICATION_H_ #ifndef _ATSPI_APPLICATION_H_
#define _ATSPI_APPLICATION_H_ #define _ATSPI_APPLICATION_H_
#include <dbus/dbus.h> #include <dbus/dbus.h>
#include "atspi-accessible.h" #include "atspi-accessible.h"
#include <sys/time.h>
#define ATSPI_TYPE_APPLICATION (atspi_application_ge t_type ()) #define ATSPI_TYPE_APPLICATION (atspi_application_ge t_type ())
#define ATSPI_APPLICATION(obj) (G_TYPE_CHECK_INSTANC E_CAST ((obj), ATSPI_TYPE_APPLICATION, AtspiApplication)) #define ATSPI_APPLICATION(obj) (G_TYPE_CHECK_INSTANC E_CAST ((obj), ATSPI_TYPE_APPLICATION, AtspiApplication))
#define ATSPI_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_C AST ((klass), ATSPI_TYPE_APPLICATION, AtspiAccessibleClass)) #define ATSPI_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_C AST ((klass), ATSPI_TYPE_APPLICATION, AtspiAccessibleClass))
#define ATSPI_IS_APPLICATION(obj) (G_TYPE_CHECK_INSTANC E_TYPE ((obj), ATSPI_TYPE_APPLICATION)) #define ATSPI_IS_APPLICATION(obj) (G_TYPE_CHECK_INSTANC E_TYPE ((obj), ATSPI_TYPE_APPLICATION))
#define ATSPI_IS_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_T YPE ((klass), ATSPI_TYPE_APPLICATION)) #define ATSPI_IS_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_T YPE ((klass), ATSPI_TYPE_APPLICATION))
#define ATSPI_APPLICATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_ CLASS ((obj), ATSPI_TYPE_APPLICATION, AtspiAccessibleClass)) #define ATSPI_APPLICATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_ CLASS ((obj), ATSPI_TYPE_APPLICATION, AtspiAccessibleClass))
typedef struct _AtspiApplication AtspiApplication; typedef struct _AtspiApplication AtspiApplication;
struct _AtspiApplication struct _AtspiApplication
{ {
GObject parent; GObject parent;
GHashTable *hash; GHashTable *hash;
char *bus_name; char *bus_name;
DBusConnection *bus; DBusConnection *bus;
struct _AtspiAccessible *root; struct _AtspiAccessible *root;
AtspiCache cache; AtspiCache cache;
gchar *toolkit_name; gchar *toolkit_name;
gchar *toolkit_version; gchar *toolkit_version;
gchar *atspi_version; gchar *atspi_version;
struct timeval time_added;
}; };
typedef struct _AtspiApplicationClass AtspiApplicationClass; typedef struct _AtspiApplicationClass AtspiApplicationClass;
struct _AtspiApplicationClass struct _AtspiApplicationClass
{ {
GObjectClass parent_class; GObjectClass parent_class;
}; };
AtspiApplication * AtspiApplication *
_atspi_application_new (const char *bus_name); _atspi_application_new (const char *bus_name);
 End of changes. 2 change blocks. 
0 lines changed or deleted 2 lines changed or added


 atspi-misc.h   atspi-misc.h 
skipping to change at line 39 skipping to change at line 39
int atspi_init (void); int atspi_init (void);
void atspi_event_main (); void atspi_event_main ();
void atspi_event_quit (); void atspi_event_quit ();
int atspi_exit (); int atspi_exit ();
DBusConnection * DBusConnection *
atspi_get_a11y_bus (); atspi_get_a11y_bus ();
void
atspi_set_timeout (gint val, gint startup_time);
#endif /* _ATSPI_MISC_H_ */ #endif /* _ATSPI_MISC_H_ */
 End of changes. 1 change blocks. 
0 lines changed or deleted 3 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/