aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-dispatcher.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-05-18 22:27:44 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-05-18 22:27:44 +0800
commitec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f (patch)
tree00f26f846d8df7206f581d4957116d80c4f8202e /libempathy/empathy-dispatcher.h
parent7f7da422bd805bb0a44135c107f013882f5824dc (diff)
downloadgsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.tar
gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.tar.gz
gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.tar.bz2
gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.tar.lz
gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.tar.xz
gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.tar.zst
gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.zip
Improve dispatcher. Fixes bug #465928.
svn path=/trunk/; revision=1108
Diffstat (limited to 'libempathy/empathy-dispatcher.h')
-rw-r--r--libempathy/empathy-dispatcher.h24
1 files changed, 15 insertions, 9 deletions
diff --git a/libempathy/empathy-dispatcher.h b/libempathy/empathy-dispatcher.h
index 0cc59c8b8..b14a460e4 100644
--- a/libempathy/empathy-dispatcher.h
+++ b/libempathy/empathy-dispatcher.h
@@ -57,15 +57,21 @@ typedef struct {
gboolean activatable;
} EmpathyDispatcherTube;
-GType empathy_dispatcher_get_type (void) G_GNUC_CONST;
-EmpathyDispatcher * empathy_dispatcher_new (void);
-void empathy_dispatcher_channel_process(EmpathyDispatcher *dispatcher,
- TpChannel *channel);
-GType empathy_dispatcher_tube_get_type (void);
-EmpathyDispatcherTube *empathy_dispatcher_tube_ref (EmpathyDispatcherTube *tube);
-void empathy_dispatcher_tube_unref (EmpathyDispatcherTube *tube);
-void empathy_dispatcher_tube_process (EmpathyDispatcher *dispatcher,
- EmpathyDispatcherTube *tube);
+GType empathy_dispatcher_get_type (void) G_GNUC_CONST;
+EmpathyDispatcher * empathy_dispatcher_new (void);
+void empathy_dispatcher_channel_process (EmpathyDispatcher *dispatcher,
+ TpChannel *channel);
+GType empathy_dispatcher_tube_get_type (void);
+EmpathyDispatcherTube *empathy_dispatcher_tube_ref (EmpathyDispatcherTube *tube);
+void empathy_dispatcher_tube_unref (EmpathyDispatcherTube *tube);
+void empathy_dispatcher_tube_process (EmpathyDispatcher *dispatcher,
+ EmpathyDispatcherTube *tube);
+void empathy_dispatcher_call_with_contact (EmpathyContact *contact);
+void empathy_dispatcher_call_with_contact_id (McAccount *account,
+ const gchar *contact_id);
+void empathy_dispatcher_chat_with_contact_id (McAccount *account,
+ const gchar *contact_id);
+void empathy_dispatcher_chat_with_contact (EmpathyContact *contact);
G_END_DECLS