diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-02-16 07:21:33 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-04-22 18:17:00 +0800 |
commit | 49241d6c1954be49c18277ae20f39c2daea4de02 (patch) | |
tree | 983b3855db55ad0572df976ef7410607e0e8c0f1 /libempathy/empathy-dispatcher.h | |
parent | 25ea31c7ba8f7c2b2b6284d4dc6d058bea962ed1 (diff) | |
download | gsoc2013-empathy-49241d6c1954be49c18277ae20f39c2daea4de02.tar gsoc2013-empathy-49241d6c1954be49c18277ae20f39c2daea4de02.tar.gz gsoc2013-empathy-49241d6c1954be49c18277ae20f39c2daea4de02.tar.bz2 gsoc2013-empathy-49241d6c1954be49c18277ae20f39c2daea4de02.tar.lz gsoc2013-empathy-49241d6c1954be49c18277ae20f39c2daea4de02.tar.xz gsoc2013-empathy-49241d6c1954be49c18277ae20f39c2daea4de02.tar.zst gsoc2013-empathy-49241d6c1954be49c18277ae20f39c2daea4de02.zip |
EmpathyDispatcher: Use new EmpathyAccountManager API and rebase on TpConnection instead of McAccount
Diffstat (limited to 'libempathy/empathy-dispatcher.h')
-rw-r--r-- | libempathy/empathy-dispatcher.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libempathy/empathy-dispatcher.h b/libempathy/empathy-dispatcher.h index 13ef06afd..167393364 100644 --- a/libempathy/empathy-dispatcher.h +++ b/libempathy/empathy-dispatcher.h @@ -62,7 +62,7 @@ typedef void (EmpathyDispatcherRequestCb) ( GType empathy_dispatcher_get_type (void) G_GNUC_CONST; void empathy_dispatcher_create_channel (EmpathyDispatcher *dispatcher, - McAccount *account, GHashTable *request, + TpConnection *connection, GHashTable *request, EmpathyDispatcherRequestCb *callback, gpointer user_data); /* Requesting 1 to 1 stream media channels */ @@ -70,7 +70,7 @@ void empathy_dispatcher_call_with_contact (EmpathyContact *contact, EmpathyDispatcherRequestCb *callback, gpointer user_data); /* Requesting 1 to 1 text channels */ -void empathy_dispatcher_chat_with_contact_id (McAccount *account, +void empathy_dispatcher_chat_with_contact_id (TpConnection *connection, const gchar *contact_id, EmpathyDispatcherRequestCb *callback, gpointer user_data); void empathy_dispatcher_chat_with_contact (EmpathyContact *contact, @@ -83,12 +83,12 @@ void empathy_dispatcher_send_file_to_contact (EmpathyContact *contact, gpointer user_data); /* Request a muc channel */ -void empathy_dispatcher_join_muc (McAccount *account, +void empathy_dispatcher_join_muc (TpConnection *connection, 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); + TpConnection *connection, const gchar *channel_type, guint handle_type); /* Get the dispatcher singleton */ EmpathyDispatcher * empathy_dispatcher_dup_singleton (void); |