Fix an errant g_object_unref
[platform/core/uifw/at-spi2-atk.git] / dbind / dbind.h
1 #ifndef _DBIND_H_
2 #define _DBIND_H_
3
4 #define DBUS_API_SUBJECT_TO_CHANGE
5 #include <dbus/dbus.h>
6 #include <dbind/dbind-any.h>
7
8 dbus_bool_t
9 dbind_method_call_reentrant_va (DBusConnection *cnx,
10                                 const char     *bus_name,
11                                 const char     *path,
12                                 const char     *interface,
13                                 const char     *method,
14                                 DBusError      *opt_error,
15                                 const char     *arg_types,
16                                 va_list         args);
17
18 dbus_bool_t
19 dbind_method_call_reentrant (DBusConnection *cnx,
20                              const char     *bus_name,
21                              const char     *path,
22                              const char     *interface,
23                              const char     *method,
24                              DBusError      *opt_error,
25                              const char     *arg_types,
26                              ...);
27
28 dbus_bool_t
29 dbind_emit_signal_va (DBusConnection *cnx,
30                       const char     *path,
31                       const char     *interface,
32                       const char     *signal,
33                       DBusError      *opt_error,
34                       const char     *arg_types,
35                       va_list         args);
36
37 dbus_bool_t
38 dbind_emit_signal (DBusConnection *cnx,
39                    const char     *path,
40                    const char     *interface,
41                    const char     *signal,
42                    DBusError      *opt_error,
43                    const char     *arg_types,
44                    ...);
45
46 #endif /* _DBIND_H_ */