diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2009-05-18 22:59:00 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-06-01 23:53:21 +0800 |
commit | f131fb616483531a97334890c56376fc0e2f4cf2 (patch) | |
tree | 773ee1278ee792961a12bff6fd7dce7f3fe7b539 /libempathy/empathy-dispatcher.h | |
parent | 24c1b03b78ee231e78a52ec79eb15e2f41e80338 (diff) | |
download | gsoc2013-empathy-f131fb616483531a97334890c56376fc0e2f4cf2.tar gsoc2013-empathy-f131fb616483531a97334890c56376fc0e2f4cf2.tar.gz gsoc2013-empathy-f131fb616483531a97334890c56376fc0e2f4cf2.tar.bz2 gsoc2013-empathy-f131fb616483531a97334890c56376fc0e2f4cf2.tar.lz gsoc2013-empathy-f131fb616483531a97334890c56376fc0e2f4cf2.tar.xz gsoc2013-empathy-f131fb616483531a97334890c56376fc0e2f4cf2.tar.zst gsoc2013-empathy-f131fb616483531a97334890c56376fc0e2f4cf2.zip |
Add empathy_dispatcher_find_channel_class_async()
Diffstat (limited to 'libempathy/empathy-dispatcher.h')
-rw-r--r-- | libempathy/empathy-dispatcher.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libempathy/empathy-dispatcher.h b/libempathy/empathy-dispatcher.h index fb7c6fe35..c65da6c92 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) ( + GStrv channel_class, gpointer user_data); GType empathy_dispatcher_get_type (void) G_GNUC_CONST; @@ -86,6 +88,10 @@ void empathy_dispatcher_join_muc (TpConnection *connection, 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); + /* Get the dispatcher singleton */ EmpathyDispatcher * empathy_dispatcher_dup_singleton (void); |