Modifications/corrections to IDL to streamline and bring in line with ATK
[platform/core/uifw/at-spi2-atk.git] / cspi / spi.c
1 #include <libbonobo.h>
2 #include <stdio.h>
3 #include "spi.h"
4
5 static CORBA_Environment ev;
6 static AccessibilityRegistry registry;
7
8 static Accessible *
9 Obj_Add (Accessible object)
10 {
11   /* TODO: keep list of live object refs */
12   Accessible *oref = g_malloc (sizeof (Accessible));
13   *oref = object;
14   return oref;
15 }
16
17 /* temporary hack until we restructure these sources */
18
19 #include "spi_main.c"
20 #include "spi_event.c"
21 #include "spi_registry.c"
22 #include "spi_application.c"
23 #include "spi_accessible.c"
24 #include "spi_component.c"