summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-message.c
diff options
context:
space:
mode:
authorJames Willcox <jwillcox@gnome.org>2003-05-14 02:40:41 +0000
committerJames Willcox <jwillcox@gnome.org>2003-05-14 02:40:41 +0000
commite9cb382daf7cef6396d1777c99f27a050f7ad4a8 (patch)
treee3cdadde817c2c2d285462ad9d1354a3bc54ec49 /dbus/dbus-message.c
parentd4e80132af03363a2f861cfd611847ee8758aed9 (diff)
2003-05-13 James Willcox <jwillcox@gnome.org>
* configure.in: * bus/activation.c: (bus_activation_service_created), (bus_activation_activate_service): * bus/driver.c: (bus_driver_send_service_deleted), (bus_driver_send_service_created), (bus_driver_send_service_lost), (bus_driver_send_service_acquired), (bus_driver_send_welcome_message), (bus_driver_handle_list_services): * bus/session.conf.in: * dbus/dbus-bus.c: (dbus_bus_acquire_service), (dbus_bus_service_exists), (dbus_bus_activate_service): * dbus/dbus-bus.h: Add some convenience API which lets you activate a service, and did a bunch of s/0/DBUS_TYPE_INVALID/ in calls to dbus_message_append_args() and dbus_message_get_args()
Diffstat (limited to 'dbus/dbus-message.c')
-rw-r--r--dbus/dbus-message.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/dbus-message.c b/dbus/dbus-message.c
index 7c89d734..4d80425b 100644
--- a/dbus/dbus-message.c
+++ b/dbus/dbus-message.c
@@ -1229,7 +1229,7 @@ dbus_message_get_destination (DBusMessage *message)
* followed by the value to add. Array values are specified by an int
* typecode followed by a pointer to the array followed by an int
* giving the length of the array. The argument list must be
- * terminated with DBUS_TYPE_INVALID.
+ * terminated with #DBUS_TYPE_INVALID.
*
* This function doesn't support dicts or non-fundamental arrays.
*
@@ -1421,7 +1421,7 @@ dbus_message_append_args_valist (DBusMessage *message,
* Gets arguments from a message given a variable argument list.
* The variable argument list should contain the type of the
* argumen followed by a pointer to where the value should be
- * stored. The list is terminated with 0.
+ * stored. The list is terminated with #DBUS_TYPE_INVALID.
*
* @param message the message
* @param error error to be filled in on failure