summaryrefslogtreecommitdiff
path: root/cspi/spi-listener.h
diff options
context:
space:
mode:
authorbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>2001-11-15 00:54:55 +0000
committerbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>2001-11-15 00:54:55 +0000
commit72d587fda7e8dda1632a4a8f4010c6262ffc31be (patch)
tree82119571173da8122af7e9f2811c59b2fbff9583 /cspi/spi-listener.h
parent96ef596eccd9654033903f35f90173e0b793b364 (diff)
downloadat-spi2-atk-72d587fda7e8dda1632a4a8f4010c6262ffc31be.tar.gz
"Unfixed" some things :-). cleaned up and made some of the namespace changes more consistent, and fixed some breakage in the tests.
Namespaces: SpiFoo for libspi/bonobo objects SPI_FOO for enums (everywhere) AccessibleFoo in cspi C bindings Accessibility_Foo in IDL. Added a primitive AccessX GUI using GTK+-2.0 widgets, in test/accessx-gui.c git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@90 e2bd861d-eb25-0410-b326-f6ed22b6b98c
Diffstat (limited to 'cspi/spi-listener.h')
-rw-r--r--cspi/spi-listener.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/cspi/spi-listener.h b/cspi/spi-listener.h
index 5c39a3d..e30d0b4 100644
--- a/cspi/spi-listener.h
+++ b/cspi/spi-listener.h
@@ -1,5 +1,5 @@
-#ifndef _SPI_SPI_LISTENER_H_
-#define _SPI_SPI_LISTENER_H_
+#ifndef _SPI_LISTENER_H_
+#define _SPI_LISTENER_H_
#ifdef __cplusplus
@@ -16,21 +16,21 @@ extern "C" {
*
*/
-typedef Accessibility_Event SpiAccessibleEvent;
+typedef Accessibility_Event AccessibleEvent;
/*
*
- * Function prototype typedefs for Event SpiListener Callbacks.
+ * Function prototype typedefs for Event Listener Callbacks.
* (see libspi/accessibleeventlistener.h for definition of VoidEventListenerCB).
*
* usage: signatures should be
- * void (*SpiAccessibleEventListenerCB) (SpiAccessibleEvent *event);
+ * void (*AccessibleEventListenerCB) (AccessibleEvent *event);
*
- * boolean (*KeystrokeListenerCB) (KeystrokeEvent *Event);
+ * boolean (*AccessibleKeystrokeListenerCB) (AccessibleKeystrokeEvent *Event);
*/
-typedef VoidEventListenerCB SpiAccessibleEventListenerCB;
-typedef BooleanKeystrokeListenerCB KeystrokeListenerCB;
+typedef VoidEventListenerCB AccessibleEventListenerCB;
+typedef BooleanKeystrokeListenerCB AccessibleKeystrokeListenerCB;
#ifdef __cplusplus
}