1/* *
2 *  BlueZ - Bluetooth protocol stack for Linux
3 *
4 *  Copyright (C) 2006-2010  Nokia Corporation
5 *  Copyright (C) 2004-2010  Marcel Holtmann <marcel@holtmann.org>
6 *
7 *
8 *  This program is free software; you can redistribute it and/or modify
9 *  it under the terms of the GNU General Public License as published by
10 *  the Free Software Foundation; either version 2 of the License, or
11 *  (at your option) any later version.
12 *
13 *  This program 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
16 *  GNU General Public License for more details.
17 *
18 *  You should have received a copy of the GNU General Public License
19 *  along with this program; if not, write to the Free Software
20 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 *
22 */
23
24#define MAX_PATH_LENGTH 64
25
26void hcid_dbus_exit(void);
27int hcid_dbus_init(void);
28void hcid_dbus_unregister(void);
29
30void dict_append_entry(DBusMessageIter *dict,
31			const char *key, int type, void *val);
32
33void dict_append_array(DBusMessageIter *dict, const char *key, int type,
34			void *val, int n_elements);
35
36dbus_bool_t emit_property_changed(DBusConnection *conn,
37					const char *path,
38					const char *interface,
39					const char *name,
40					int type, void *value);
41
42dbus_bool_t emit_array_property_changed(DBusConnection *conn,
43					const char *path,
44					const char *interface,
45					const char *name,
46					int type, void *value);
47