diff options
author | Olivier Andrieu <oliv__a@users.sourceforge.net> | 2004-09-24 10:43:36 +0000 |
---|---|---|
committer | Olivier Andrieu <oliv__a@users.sourceforge.net> | 2004-09-24 10:43:36 +0000 |
commit | 85f8f62da6bb26d7033310af9d3260b073efe4bf (patch) | |
tree | 9b4bc616ed867cba0e8b48873c9b9e91cd326bbb /bus/driver.h | |
parent | 64b63e84b7f08695bf194a05aadd074600c8e622 (diff) |
* doc/dbus-specification.xml: document ServiceOwnerChanged signal.
* bus/driver.c, bus/driver.h, bus/services.c: Use ServiceOwnerChanged
signal instead of ServiceCreated and ServiceDeleted.
* bus/dispatch.c: update testcase for the new signal.
Diffstat (limited to 'bus/driver.h')
-rw-r--r-- | bus/driver.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/bus/driver.h b/bus/driver.h index f971838a..bc430520 100644 --- a/bus/driver.h +++ b/bus/driver.h @@ -32,9 +32,6 @@ dbus_bool_t bus_driver_handle_message (DBusConnection *connection, BusTransaction *transaction, DBusMessage *message, DBusError *error); -dbus_bool_t bus_driver_send_service_deleted (const char *service_name, - BusTransaction *transaction, - DBusError *error); dbus_bool_t bus_driver_send_service_lost (DBusConnection *connection, const char *service_name, BusTransaction *transaction, @@ -43,8 +40,10 @@ dbus_bool_t bus_driver_send_service_acquired (DBusConnection *connection, const char *service_name, BusTransaction *transaction, DBusError *error); -dbus_bool_t bus_driver_send_service_created (const char *service_name, - BusTransaction *transaction, - DBusError *error); +dbus_bool_t bus_driver_send_service_owner_changed (const char *service_name, + const char *old_owner, + const char *new_owner, + BusTransaction *transaction, + DBusError *error); #endif /* BUS_DRIVER_H */ |