2001-11-23 Michael Meeks <michael@ximian.com>
[platform/core/uifw/at-spi2-atk.git] / cspi / spi-impl.h
1 /*
2  * Note: this header is a private implementation header, clients of
3  *       the at-spi interfaces or the C bindings in libcspi should
4  *       not depend on any of the information in this file directly,
5  *       as it it not intended for use as a public interface.
6  *
7  *    You have been warned !
8  */
9
10 #ifndef _SPI_IMPL_H_
11 #define _SPI_IMPL_H_
12
13 #include <libspi/accessibleeventlistener.h>
14 #include <libspi/keystrokelistener.h>
15 #include <libspi/Accessibility.h>
16
17 typedef unsigned int boolean;
18
19 typedef CORBA_Object Accessible;
20 typedef CORBA_Object AccessibleAction;
21 typedef CORBA_Object AccessibleApplication;
22 typedef CORBA_Object AccessibleComponent;
23 typedef CORBA_Object AccessibleEditableText;
24 typedef CORBA_Object AccessibleHyperlink;
25 typedef CORBA_Object AccessibleHypertext;
26 typedef CORBA_Object AccessibleImage;
27 typedef CORBA_Object AccessibleRelation;
28 typedef CORBA_Object AccessibleSelection;
29 typedef CORBA_Object AccessibleStateSet;
30 typedef CORBA_Object AccessibleTable;
31 typedef CORBA_Object AccessibleText;
32 typedef CORBA_Object AccessibleValue;
33 typedef CORBA_Object AccessibilityRegistry;
34 typedef CORBA_Object GenericInterface;
35
36 typedef SpiKeystrokeListener AccessibleKeystrokeListener;
37 typedef SpiEventListener AccessibleEventListener;
38
39 #endif