diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2009-06-02 00:07:13 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-06-02 00:07:13 +0800 |
commit | 3623b886388ccb1a581177c096a1668b26fdadd1 (patch) | |
tree | 640a6711a116e3ea254e0090960785271fc77d33 /libempathy/empathy-dispatcher.h | |
parent | b06c101e97689187240ea55fe1d3e399ed0960e0 (diff) | |
parent | 17fec9762e1680828a73efb59f7ed155219763ac (diff) | |
download | gsoc2013-empathy-3623b886388ccb1a581177c096a1668b26fdadd1.tar gsoc2013-empathy-3623b886388ccb1a581177c096a1668b26fdadd1.tar.gz gsoc2013-empathy-3623b886388ccb1a581177c096a1668b26fdadd1.tar.bz2 gsoc2013-empathy-3623b886388ccb1a581177c096a1668b26fdadd1.tar.lz gsoc2013-empathy-3623b886388ccb1a581177c096a1668b26fdadd1.tar.xz gsoc2013-empathy-3623b886388ccb1a581177c096a1668b26fdadd1.tar.zst gsoc2013-empathy-3623b886388ccb1a581177c096a1668b26fdadd1.zip |
Merge branch 'ft_rework'
Diffstat (limited to 'libempathy/empathy-dispatcher.h')
-rw-r--r-- | libempathy/empathy-dispatcher.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/libempathy/empathy-dispatcher.h b/libempathy/empathy-dispatcher.h index fb7c6fe35..d6c83f6c1 100644 --- a/libempathy/empathy-dispatcher.h +++ b/libempathy/empathy-dispatcher.h @@ -58,6 +58,8 @@ struct _EmpathyDispatcherClass typedef void (EmpathyDispatcherRequestCb) ( EmpathyDispatchOperation *dispatch, const GError *error, gpointer user_data); +typedef void (EmpathyDispatcherFindChannelClassCb) ( + GList *channel_classes, gpointer user_data); GType empathy_dispatcher_get_type (void) G_GNUC_CONST; @@ -83,8 +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_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, ...); + +GList * empathy_dispatcher_find_requestable_channel_classes + (EmpathyDispatcher *dispatcher, TpConnection *connection, + const gchar *channel_type, guint handle_type, + const char *first_property_name, ...); /* Get the dispatcher singleton */ EmpathyDispatcher * empathy_dispatcher_dup_singleton (void); |