+2008-05-08 Jürg Billeter <j@bitron.ch>
+
+ * vapi/dbus-glib-1.vapi:
+
+ Add dbus_g_connection_lookup_g_object and dbus_g_proxy_get_*
+ bindings, patch by Yu Feng, fixes bug 531131
+
2008-05-08 Jürg Billeter <j@bitron.ch>
* vala/valastruct.vala:
public Object get_object (string name, string path, string interface_);
[CCode (cname = "dbus_g_connection_register_g_object")]
public void register_object (string at_path, GLib.Object object);
+ [CCode (cname = "dbus_g_connection_lookup_g_object")]
+ public weak GLib.Object lookup_object (string at_path);
}
[CCode (cname = "DBusGProxy", lower_case_csuffix = "g_proxy")]
public weak ProxyCall begin_call (string method, ProxyCallNotify notify, GLib.DestroyNotify destroy, GLib.Type first_arg_type, ...);
public bool end_call (ProxyCall call, out GLib.Error error, GLib.Type first_arg_type, ...);
public void cancel_call (ProxyCall call);
+ public weak string get_path ();
+ public weak string get_bus_name ();
+ public weak string get_interface ();
}
[CCode (cname = "DBusGProxyCallNotify")]