_dbus_bindings: split out conn, conn-methods into separate translation units
[dbus-python-phuang.git] / _dbus_bindings / conn-internal.h
blob668e1364ef3a0a658a5ac959202e418279861158
1 /* _dbus_bindings internal API. For use within _dbus_bindings only.
3 * Copyright (C) 2006 Collabora Ltd. <http://www.collabora.co.uk/>
5 * Licensed under the Academic Free License version 2.1
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program 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
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #ifndef DBUS_BINDINGS_CONN_H
25 #define DBUS_BINDINGS_CONN_H
27 #include "dbus_bindings.h"
29 typedef struct {
30 PyObject_HEAD
31 DBusConnection *conn;
32 /* A list of filter callbacks. */
33 PyObject *filters;
34 /* A dict mapping object paths to one of:
35 * - tuples (unregister_callback or None, message_callback)
36 * - None (meaning unregistration from libdbus is in progress and nobody
37 * should touch this entry til we're finished)
39 PyObject *object_paths;
41 PyObject *weaklist;
42 } Connection;
44 extern struct PyMethodDef DBusPyConnection_tp_methods[];
45 extern DBusHandlerResult DBusPyConnection_HandleMessage(Connection *,
46 PyObject *,
47 PyObject *);
48 extern PyObject *DBusPyConnection_ExistingFromDBusConnection(DBusConnection *);
49 extern PyObject *DBusPyConnection_GetObjectPathHandlers(PyObject *self,
50 PyObject *path);
52 #endif