2008-12-07 Mark Doffman <mark.doffman@codethink.co.uk>
[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 (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                              ...);
17
18 dbus_bool_t
19 dbind_emit_signal (DBusConnection *cnx,
20                    const char     *path,
21                    const char     *interface,
22                    const char     *signal,
23                    DBusError      *opt_error,
24                    const char     *arg_types,
25                    ...);
26
27 #endif /* _DBIND_H_ */