]> git.0d.be Git - empathy.git/blobdiff - libempathy/empathy-request-util.h
individual-menu: remove link-contacts-activated signal
[empathy.git] / libempathy / empathy-request-util.h
index 49b98a43364e8e910a1eb605159f08434b35a589..6781b72d40b4ac2351f5a4fa08ce0da0cdefe005 100644 (file)
@@ -36,15 +36,20 @@ G_BEGIN_DECLS
 #define EMPATHY_AV_BUS_NAME_SUFFIX "Empathy.AudioVideo"
 #define EMPATHY_AV_BUS_NAME TP_CLIENT_BUS_NAME_BASE EMPATHY_AV_BUS_NAME_SUFFIX
 
+#define EMPATHY_CALL_BUS_NAME_SUFFIX "Empathy.Call"
+#define EMPATHY_CALL_BUS_NAME TP_CLIENT_BUS_NAME_BASE EMPATHY_CALL_BUS_NAME_SUFFIX
+
 #define EMPATHY_FT_BUS_NAME_SUFFIX "Empathy.FileTransfer"
 #define EMPATHY_FT_BUS_NAME TP_CLIENT_BUS_NAME_BASE EMPATHY_FT_BUS_NAME_SUFFIX
 
 /* Requesting 1 to 1 text channels */
 void empathy_chat_with_contact_id (TpAccount *account,
   const gchar *contact_id,
-  gint64 timestamp);
+  gint64 timestamp,
+  GAsyncReadyCallback callback,
+  gpointer user_data);
 
-void  empathy_chat_with_contact (EmpathyContact *contact,
+void empathy_chat_with_contact (EmpathyContact *contact,
   gint64 timestamp);
 
 /* Request a muc channel */
@@ -55,7 +60,9 @@ void empathy_join_muc (TpAccount *account,
 /* Request a sms channel */
 void empathy_sms_contact_id (TpAccount *account,
   const gchar *contact_id,
-  gint64 timestamp);
+  gint64 timestamp,
+  GAsyncReadyCallback callback,
+  gpointer user_data);
 
 G_END_DECLS