/*
|
*
|
* Connection Manager
|
*
|
* Copyright (C) 2013 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 as published by
|
* the Free Software Foundation; either version 2 of the License, or
|
* (at your option) any later version.
|
*
|
* 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 __DBUS_HELPERS_H
|
#define __DBUS_HELPERS_H
|
|
#include <dbus/dbus.h>
|
|
#ifdef __cplusplus
|
extern "C" {
|
#endif
|
|
typedef int (*dbus_method_return_func_t)(DBusMessageIter *iter,
|
const char *error, void *user_data);
|
|
typedef void (*dbus_append_func_t)(DBusMessageIter *iter,
|
void *user_data);
|
|
int dbus_helpers_method_call(DBusConnection *connection,
|
const char *service, const char *path, const char *interface,
|
const char *method, dbus_method_return_func_t cb,
|
void *user_data, dbus_append_func_t append_func,
|
void *append_data);
|
|
#ifdef __cplusplus
|
}
|
#endif
|
|
#endif
|