tp-conn.h | tp-conn.h | |||
---|---|---|---|---|
skipping to change at line 160 | skipping to change at line 160 | |||
* method should be called before this to acquire the interface name | * method should be called before this to acquire the interface name | |||
* list. | * list. | |||
* | * | |||
* @param self: The connection object | * @param self: The connection object | |||
* @param interfaces: An array of the interface name strings | * @param interfaces: An array of the interface name strings | |||
*/ | */ | |||
void tp_conn_local_set_interfaces(TpConn *self, gchar **interfaces); | void tp_conn_local_set_interfaces(TpConn *self, gchar **interfaces); | |||
/* | /* | |||
* Provides access to the connection proxy object to use for actual | ||||
* method calls | ||||
* | ||||
* @param self: The connection object whose proxy should be retrieved | ||||
* @return The D-BUS proxy object | ||||
*/ | ||||
DBusGProxy *tp_conn_get_proxy(TpConn *self); | ||||
/* | ||||
* This function checks whether the Connection has the specified | * This function checks whether the Connection has the specified | |||
* interface and returns a proxy object that can be used to call | * interface and returns a proxy object that can be used to call | |||
* its methods, if it exists. The supported interfaces are listed | * its methods, if it exists. The supported interfaces are listed | |||
* in the beginning of this header as macros. | * in the beginning of this header as macros. | |||
* | * | |||
* @param self The connection object that is queried for the | * @param self The connection object that is queried for the | |||
* interface proxy object | * interface proxy object | |||
* @param iface_quark GQuark corresponding to the interface name | * @param iface_quark GQuark corresponding to the interface name | |||
* string. | * string. | |||
* @return A DBusGProxy object for the interface, or NULL if not found | * @return A DBusGProxy object for the interface, or NULL if not found | |||
End of changes. 1 change blocks. | ||||
10 lines changed or deleted | 0 lines changed or added | |||