source: trunk/third/at-spi/libspi/spi-private.h @ 18688

Revision 18688, 1.7 KB checked in by ghudson, 21 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18687, which included commits to RCS files with non-trunk default branches.
Line 
1/*
2 * AT-SPI - Assistive Technology Service Provider Interface
3 * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4 *
5 * Copyright 2001, 2002 Sun Microsystems Inc.,
6 * Copyright 2001, 2002 Ximian, Inc.
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 * Library General Public License for more details.
17 *
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
22 */
23
24#ifndef SPI_PRIVATE_H_
25#define SPI_PRIVATE_H_
26
27#include <glib/glist.h>
28#include <orbit/orbit.h>
29
30G_BEGIN_DECLS
31
32#define DBG(a,b) if(_dbg>=(a))b
33
34extern int _dbg;
35
36typedef enum {
37        SPI_RE_ENTRANT_CONTINUE = 0,
38        SPI_RE_ENTRANT_TERMINATE
39} SpiReEntrantContinue;
40
41typedef SpiReEntrantContinue (*SpiReEntrantFn) (GList * const *list,
42                                                gpointer       user_data);
43
44void spi_re_entrant_list_delete_link (GList * const  *element_ptr);
45void spi_re_entrant_list_foreach     (GList         **list,
46                                      SpiReEntrantFn  func,
47                                      gpointer        user_data);
48void spi_init_any_nil                (CORBA_any *any);
49void spi_init_any_string             (CORBA_any *any, char **string);
50void spi_init_any_object             (CORBA_any *any, CORBA_Object *o);
51
52G_END_DECLS
53
54#endif /* SPI_PRIVATE_H_ */
Note: See TracBrowser for help on using the repository browser.