aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-dispatcher.h
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimo.cecchi@collabora.co.uk>2009-05-24 18:54:30 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2009-06-01 23:53:23 +0800
commitab09ea63588d1b00e3ec3474546f181e041af6e4 (patch)
tree95987f67167c3d1205c19b7dba8fb73eb9a70da5 /libempathy/empathy-dispatcher.h
parent020e85a643577821fc679868d0495fdda958760c (diff)
downloadgsoc2013-empathy-ab09ea63588d1b00e3ec3474546f181e041af6e4.tar
gsoc2013-empathy-ab09ea63588d1b00e3ec3474546f181e041af6e4.tar.gz
gsoc2013-empathy-ab09ea63588d1b00e3ec3474546f181e041af6e4.tar.bz2
gsoc2013-empathy-ab09ea63588d1b00e3ec3474546f181e041af6e4.tar.lz
gsoc2013-empathy-ab09ea63588d1b00e3ec3474546f181e041af6e4.tar.xz
gsoc2013-empathy-ab09ea63588d1b00e3ec3474546f181e041af6e4.tar.zst
gsoc2013-empathy-ab09ea63588d1b00e3ec3474546f181e041af6e4.zip
Add find_requestable_channel_classes
And remove find_channel_class API.
Diffstat (limited to 'libempathy/empathy-dispatcher.h')
-rw-r--r--libempathy/empathy-dispatcher.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/libempathy/empathy-dispatcher.h b/libempathy/empathy-dispatcher.h
index c65da6c92..95dd70d08 100644
--- a/libempathy/empathy-dispatcher.h
+++ b/libempathy/empathy-dispatcher.h
@@ -85,12 +85,16 @@ void empathy_dispatcher_join_muc (TpConnection *connection,
const gchar *roomname, EmpathyDispatcherRequestCb *callback,
gpointer user_data);
-GStrv empathy_dispatcher_find_channel_class (EmpathyDispatcher *dispatcher,
- TpConnection *connection, const gchar *channel_type, guint handle_type);
-
-void empathy_dispatcher_find_channel_class_async (EmpathyDispatcher *dispatcher,
- TpConnection *connection, const gchar *channel_type, guint handle_type,
- EmpathyDispatcherFindChannelClassCb callback, gpointer user_data);
+void empathy_dispatcher_find_requestable_channel_classes_async
+ (EmpathyDispatcher *dispatcher, TpConnection *connection,
+ const gchar *channel_type, guint handle_type,
+ EmpathyDispatcherFindChannelClassCb callback, gpointer user_data,
+ const char *first_property_name, ...);
+
+GStrv empathy_dispatcher_find_requestable_channel_classes
+ (EmpathyDispatcher *dispatcher, TpConnection *connection,
+ const gchar *channel_type, guint handle_type,
+ const gchar *first_property_name, ...);
/* Get the dispatcher singleton */
EmpathyDispatcher * empathy_dispatcher_dup_singleton (void);