/* * * OBEX Client * * Copyright (C) 2008-2011 Intel Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifndef __OBEX_DBUS_H #define __OBEX_DBUS_H #ifdef __cplusplus extern "C" { #endif #include /* Essentially a{sv} */ #define OBC_PROPERTIES_ARRAY_SIGNATURE DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING \ DBUS_TYPE_STRING_AS_STRING \ DBUS_TYPE_VARIANT_AS_STRING \ DBUS_DICT_ENTRY_END_CHAR_AS_STRING void obex_dbus_dict_append(DBusMessageIter *dict, const char *key, int type, void *value); void obex_dbus_dict_append_array(DBusMessageIter *dict, const char *key, int type, void *val); void obex_dbus_dict_append_dict(DBusMessageIter *dict, const char *key, int type, void *val); int obex_dbus_signal_property_changed(DBusConnection *conn, const char *path, const char *interface, const char *name, int type, void *value); int obex_dbus_signal_array_property_changed(DBusConnection *conn, const char *path, const char *interface, const char *name, int type, void *value); int obex_dbus_signal_dict_property_changed(DBusConnection *conn, const char *path, const char *interface, const char *name, int type, void *value); #ifdef __cplusplus } #endif #endif /* __OBEX_DBUS_H */