diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-02-03 17:03:03 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-02-03 17:03:03 +0800 |
commit | 72e233a357ebbc14c01bbc8fa805015d9b470fd3 (patch) | |
tree | f3036b707eb56f65854849842977ff4306fe626d /libempathy/empathy-dispatcher.h | |
parent | dee8e2ead34eb2de1868103956084df6e442d009 (diff) | |
download | gsoc2013-empathy-72e233a357ebbc14c01bbc8fa805015d9b470fd3.tar gsoc2013-empathy-72e233a357ebbc14c01bbc8fa805015d9b470fd3.tar.gz gsoc2013-empathy-72e233a357ebbc14c01bbc8fa805015d9b470fd3.tar.bz2 gsoc2013-empathy-72e233a357ebbc14c01bbc8fa805015d9b470fd3.tar.lz gsoc2013-empathy-72e233a357ebbc14c01bbc8fa805015d9b470fd3.tar.xz gsoc2013-empathy-72e233a357ebbc14c01bbc8fa805015d9b470fd3.tar.zst gsoc2013-empathy-72e233a357ebbc14c01bbc8fa805015d9b470fd3.zip |
Add functionality to call CreateChannels and look up (simple) channel classes
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
svn path=/trunk/; revision=2386
Diffstat (limited to 'libempathy/empathy-dispatcher.h')
-rw-r--r-- | libempathy/empathy-dispatcher.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libempathy/empathy-dispatcher.h b/libempathy/empathy-dispatcher.h index 59b06ffbd..f95161848 100644 --- a/libempathy/empathy-dispatcher.h +++ b/libempathy/empathy-dispatcher.h @@ -57,7 +57,11 @@ typedef void (EmpathyDispatcherRequestCb) ( EmpathyDispatchOperation *dispatch, const GError *error, gpointer user_data); -GType empathy_dispatcher_get_type (void) G_GNUC_CONST; +GType empathy_dispatcher_get_type (void) G_GNUC_CONST; + +void empathy_dispatcher_create_channel (EmpathyDispatcher *dispatcher, + McAccount *account, GHashTable *request, + EmpathyDispatcherRequestCb *callback, gpointer user_data); /* Requesting 1 to 1 stream media channels */ void empathy_dispatcher_call_with_contact (EmpathyContact *contact, @@ -81,6 +85,9 @@ void empathy_dispatcher_join_muc (McAccount *account, const gchar *roomname, EmpathyDispatcherRequestCb *callback, gpointer user_data); +GStrv empathy_dispatcher_find_channel_class (EmpathyDispatcher *dispatcher, + McAccount *account, const gchar *channel_type, guint handle_type); + /* Get the dispatcher singleton */ EmpathyDispatcher * empathy_dispatcher_dup_singleton (void); |