dbus/dbus dbus-glib.h,1.13,1.14

Colin Walters walters at freedesktop.org
Mon Jun 20 17:30:22 PDT 2005


Update of /cvs/dbus/dbus/dbus
In directory gabe:/tmp/cvs-serv9204/dbus

Modified Files:
	dbus-glib.h 
Log Message:
2005-06-20  Colin Walters  <walters at verbum.org>

	* dbus/dbus-glib.h: 
	* glib/dbus-gproxy.c: Rename dbus_g_proxy_invoke to
	dbus_g_proxy_call.

	* glib/dbus-binding-tool-glib.c: 
	* doc/dbus-tutorial.xml: 
	* test/glib/test-dbus-glib.c: Update for rename.


Index: dbus-glib.h
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-glib.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- dbus-glib.h	19 Jun 2005 15:31:25 -0000	1.13
+++ dbus-glib.h	21 Jun 2005 00:30:20 -0000	1.14
@@ -116,8 +116,8 @@
   const char *exported_properties;  /**< Exported properties */
 };
 
-void dbus_g_object_type_install_info     (GType                 object_type,
-                                          const DBusGObjectInfo *info);
+void       dbus_g_object_type_install_info     (GType                 object_type,
+                                                const DBusGObjectInfo *info);
 
 void       dbus_g_connection_register_g_object (DBusGConnection       *connection,
 						const char            *at_path,
@@ -246,6 +246,18 @@
                                                       const char        *signal_name,
                                                       GCallback          handler,
                                                       void              *data);
+
+gboolean          dbus_g_proxy_call                  (DBusGProxy        *proxy,
+						      const char        *method,
+						      GError           **error,
+						      GType              first_arg_type,
+						      ...);
+
+void              dbus_g_proxy_call_no_reply         (DBusGProxy        *proxy,
+                                                      const char        *method,
+                                                      GType              first_arg_type,
+                                                      ...);
+
 DBusGPendingCall* dbus_g_proxy_begin_call            (DBusGProxy        *proxy,
                                                       const char        *method,
                                                       GType              first_arg_type,
@@ -255,10 +267,6 @@
                                                       GError           **error,
                                                       GType              first_arg_type,
                                                       ...);
-void              dbus_g_proxy_call_no_reply         (DBusGProxy        *proxy,
-                                                      const char        *method,
-                                                      GType              first_arg_type,
-                                                      ...);
 
 const char*       dbus_g_proxy_get_path              (DBusGProxy        *proxy);
 
@@ -266,17 +274,11 @@
 
 const char*       dbus_g_proxy_get_interface         (DBusGProxy        *proxy);
 
-gboolean          dbus_g_proxy_invoke                (DBusGProxy        *proxy,
-						      const char        *method,
-						      GError           **error,
-						      GType              first_arg_type,
-						      ...);
-
 typedef struct _DBusGMethodInvocation DBusGMethodInvocation;
 
-void dbus_g_method_return (DBusGMethodInvocation *context, ...);
+void              dbus_g_method_return               (DBusGMethodInvocation *context, ...);
 
-void dbus_g_method_return_error (DBusGMethodInvocation *context, GError *error);
+void              dbus_g_method_return_error         (DBusGMethodInvocation *context, GError *error);
 
 typedef struct {
   DBusGProxy *proxy;



More information about the dbus-commit mailing list