Fix some missing prototypes
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / adaptors / adaptors.h
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 ADAPTORS_H
25 #define ADAPTORS_H
26
27 #include <atk/atk.h>
28 #include <droute/droute.h>
29
30 Accessibility_Role spi_accessible_role_from_atk_role (AtkRole role);
31
32 void spi_initialize_accessible (DRoutePath * path);
33 void spi_initialize_action (DRoutePath * path);
34 void spi_initialize_application (DRoutePath * path);
35 void spi_initialize_collection (DRoutePath * path);
36 void spi_initialize_component (DRoutePath * path);
37 void spi_initialize_document (DRoutePath * path);
38 void spi_initialize_editabletext (DRoutePath * path);
39 void spi_initialize_hyperlink (DRoutePath * path);
40 void spi_initialize_hypertext (DRoutePath * path);
41 void spi_initialize_image (DRoutePath * path);
42 void spi_initialize_selection (DRoutePath * path);
43 void spi_initialize_socket (DRoutePath * path);
44 void spi_initialize_table (DRoutePath * path);
45 void spi_initialize_text (DRoutePath * path);
46 void spi_initialize_value (DRoutePath * path);
47 void spi_initialize_cache (DRoutePath * path);
48
49 #endif /* ADAPTORS_H */