Compiler warning fixes, moved some InternalFoo to private header,
[platform/core/uifw/at-spi2-atk.git] / cspi / spi-private.h
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2002 Ximian, Inc.
6  *           2002 Sun Microsystems Inc.
7  *           
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22  * Boston, MA 02111-1307, USA.
23  */
24
25 #ifndef _SPI_PRIVATE_H_
26 #define _SPI_PRIVATE_H_
27
28 /* Private internal implementation details of at-spi. */
29
30 #include <libspi/Accessibility.h>
31 #include <cspi/spi.h>
32 #include "cspi/cspi-lowlevel.h"
33 #include "cspi/spi-listener.h"
34
35 struct _Accessible {
36         CORBA_Object objref;
37         /* And some other bits */
38         guint        on_loan : 1;
39         guint        ref_count : 30;
40 };
41
42 /* 
43  * For internal use by CSPI implementation only
44  */
45 typedef struct {
46   AccessibleEvent event;
47   void           *data; 
48 } InternalEvent;
49
50 #define CSPI_OBJREF(a) (((Accessible *)(a))->objref)
51
52 CORBA_Environment     *cspi_ev               (void);
53 SPIBoolean             cspi_exception        (void);
54 Accessibility_Registry cspi_registry         (void);
55 Accessible            *cspi_object_add       (CORBA_Object corba_object);
56 void                   cspi_object_ref       (Accessible  *accessible);
57 void                   cspi_object_unref     (Accessible  *accessible);
58 Accessible            *cspi_object_borrow    (CORBA_Object corba_object);
59 void                   cspi_object_return    (Accessible  *accessible);
60 SPIBoolean             cspi_accessible_is_a  (Accessible  *accessible,
61                                               const char  *interface_name);
62
63 #define cspi_return_if_fail(val)                \
64         if (!(val))                             \
65                 return
66 #define cspi_return_val_if_fail(val, ret)       \
67         if (!(val))                             \
68                 return (ret)
69
70 #define cspi_return_if_ev(err)                  \
71         if (!cspi_check_ev (err))               \
72                 return;
73 #define cspi_return_val_if_ev(err, ret) \
74         if (!cspi_check_ev (err))               \
75                 return (ret);
76
77 #endif /* _SPI_PRIVATE_H_ */