diff options
author | Havoc Pennington <hp@redhat.com> | 2003-08-16 21:28:47 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-08-16 21:28:47 +0000 |
commit | 7c3693a53b4eba0db1aebe1edab5ded21eb7757f (patch) | |
tree | fa5f476e43ac8214a9a980cbff4e7f0e61fc8eb8 /glib/dbus-gproxy.h | |
parent | a1b0bd33408f03894987ac32b4e6b46c6a15a594 (diff) |
2003-08-16 Havoc Pennington <hp@pobox.com>
* dbus/dbus-object-registry.c (add_and_remove_objects): remove
broken assertion
* glib/dbus-gproxy.c: some hacking
Diffstat (limited to 'glib/dbus-gproxy.h')
-rw-r--r-- | glib/dbus-gproxy.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/glib/dbus-gproxy.h b/glib/dbus-gproxy.h index 47b70f36..f40ce8a0 100644 --- a/glib/dbus-gproxy.h +++ b/glib/dbus-gproxy.h @@ -34,7 +34,6 @@ G_BEGIN_DECLS typedef struct DBusGProxy DBusGProxy; -typedef struct DBusPendingCall DBusPendingCall; DBusGProxy* dbus_gproxy_new_for_service (DBusConnection *connection, const char *service_name, @@ -60,18 +59,18 @@ DBusPendingCall* dbus_gproxy_begin_call (DBusGProxy *proxy, const char *method, int first_arg_type, ...); -void dbus_gproxy_oneway_call (DBusGProxy *proxy, - const char *method, +gboolean dbus_gproxy_end_call (DBusGProxy *proxy, + DBusPendingCall *pending, + GError **error, int first_arg_type, ...); -gboolean dbus_pending_call_is_complete (DBusPendingCall *call); -void dbus_pending_call_cancel_and_free (DBusPendingCall *call); -gboolean dbus_pending_call_block_and_free (DBusPendingCall *call, - GError **error, +void dbus_gproxy_oneway_call (DBusGProxy *proxy, + const char *method, int first_arg_type, ...); - - +void dbus_gproxy_send (DBusGProxy *proxy, + DBusMessage *message, + dbus_uint32_t *client_serial); G_END_DECLS |