hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 *
 *  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