2001-12-10 Michael Meeks <michael@ximian.com>
[platform/core/uifw/at-spi2-atk.git] / cspi / spi-impl.h
index 6f8959f..5f6ff70 100644 (file)
@@ -1,35 +1,29 @@
 /*
- * Note: this header is a private implementation header, clients of
- *       the at-spi interfaces or the C bindings in libcspi should
- *       not depend on any of the information in this file directly,
- *       as it it not intended for use as a public interface.
- *
- *    You have been warned !
+ * A load of opaque handles that people can't poke at.
  */
-
 #ifndef _SPI_IMPL_H_
 #define _SPI_IMPL_H_
 
-#include <orbit/orbit.h>
-#include "Accessibility.h"
+typedef struct _Accessible Accessible;
+typedef Accessible AccessibleAction;
+typedef Accessible AccessibleApplication;
+typedef Accessible AccessibleComponent;
+typedef Accessible AccessibleEditableText;
+typedef Accessible AccessibleHyperlink;
+typedef Accessible AccessibleHypertext;
+typedef Accessible AccessibleImage;
+typedef Accessible AccessibleRelation;
+typedef Accessible AccessibleSelection;
+typedef Accessible AccessibleStateSet;
+typedef Accessible AccessibleTable;
+typedef Accessible AccessibleText;
+typedef Accessible AccessibleValue;
+typedef Accessible AccessibilityRegistry;
+typedef Accessible GenericInterface;
 
-typedef unsigned int boolean;
+typedef struct _CSpiEventListener     AccessibleEventListener;
+typedef struct _CSpiKeystrokeListener AccessibleKeystrokeListener;
 
-typedef CORBA_Object Accessible;
-typedef CORBA_Object AccessibleAction;
-typedef CORBA_Object AccessibleApplication;
-typedef CORBA_Object AccessibleComponent;
-typedef CORBA_Object AccessibleEditableText;
-typedef CORBA_Object AccessibleHyperlink;
-typedef CORBA_Object AccessibleHypertext;
-typedef CORBA_Object AccessibleImage;
-typedef CORBA_Object AccessibleRelation;
-typedef CORBA_Object AccessibleSelection;
-typedef CORBA_Object AccessibleStateSet;
-typedef CORBA_Object AccessibleTable;
-typedef CORBA_Object AccessibleText;
-typedef CORBA_Object AccessibleValue;
-typedef CORBA_Object AccessibilityRegistry;
-typedef CORBA_Object GenericInterface;
+typedef unsigned int SPIBoolean;
 
 #endif