Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:28:16

0001 /* -*- mode: C; c-file-style: "gnu" -*- */
0002 /* atspi-gmain.h atspi dbus gmain prototypes
0003  *
0004  * Licensed under the Academic Free License version 2.1
0005  *
0006  * This program is free software; you can redistribute it and/or modify
0007  * it under the terms of the GNU General Public License as published by
0008  * the Free Software Foundation; either version 2.1 of the License, or
0009  * (at your option) any later version.
0010  *
0011  * This program is distributed in the hope that it will be useful,
0012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0014  * GNU General Public License for more details.
0015  *
0016  * You should have received a copy of the GNU General Public License
0017  * along with this program; if not, write to the Free Software
0018  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
0019  *
0020  * This file is based on dbus-gmain.c from dbus-glib with functions renamed
0021  * and unnecessary code removed.
0022  */
0023 
0024 #ifndef _ATSPI_GMAIN_H
0025 #define _ATSPI_GMAIN_H
0026 
0027 #include <dbus/dbus.h>
0028 #include <glib.h>
0029 
0030 G_BEGIN_DECLS
0031 
0032 void
0033 atspi_dbus_connection_setup_with_g_main (DBusConnection *connection,
0034                                          GMainContext *context);
0035 
0036 void
0037 atspi_dbus_server_setup_with_g_main (DBusServer *server,
0038                                      GMainContext *context);
0039 
0040 G_END_DECLS
0041 
0042 #endif