Remove from EXTRA_DIST files we'd already be distributing
[dbus-python-phuang.git] / _dbus_bindings / message-internal.h
blob202587c0f3e8a9abd0d30a030b450efc85ecca81
1 /* D-Bus message: implementation internals
3 * Copyright (C) 2006 Collabora Ltd.
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
25 #include <Python.h>
27 #include "dbus_bindings-internal.h"
29 #ifndef DBUS_BINDINGS_MESSAGE_INTERNAL_H
30 #define DBUS_BINDINGS_MESSAGE_INTERNAL_H
32 typedef struct {
33 PyObject_HEAD
34 DBusMessage *msg;
35 } Message;
37 extern char dbus_py_Message_append__doc__[];
38 extern PyObject *dbus_py_Message_append(Message *, PyObject *, PyObject *);
39 extern char dbus_py_Message_guess_signature__doc__[];
40 extern PyObject *dbus_py_Message_guess_signature(PyObject *, PyObject *);
41 extern char dbus_py_Message_get_args_list__doc__[];
42 extern PyObject *dbus_py_Message_get_args_list(Message *,
43 PyObject *,
44 PyObject *);
46 extern PyObject *DBusPy_RaiseUnusableMessage(void);
48 #endif