summaryrefslogtreecommitdiff
path: root/telepathy-glib/base-media-call-content.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2011-12-06 11:52:22 +0100
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-01-10 09:52:44 +0100
commit0d42cb7fd24f0d2fabdfbb0a0a1a7d5dcb3c570a (patch)
treeba69844a5a3c17b0e5cf9cb4a842c5a02abfeafe /telepathy-glib/base-media-call-content.h
parent07f53b53462405ce7d17c93fbf83e3fe450a5f32 (diff)
downloadtelepathy-glib-0d42cb7fd24f0d2fabdfbb0a0a1a7d5dcb3c570a.tar.gz
TpBaseMediaCallContent: Make offer_media_description async
Diffstat (limited to 'telepathy-glib/base-media-call-content.h')
-rw-r--r--telepathy-glib/base-media-call-content.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/telepathy-glib/base-media-call-content.h b/telepathy-glib/base-media-call-content.h
index c6e55953a..439d348bf 100644
--- a/telepathy-glib/base-media-call-content.h
+++ b/telepathy-glib/base-media-call-content.h
@@ -70,9 +70,15 @@ GHashTable *tp_base_media_call_content_get_local_media_description (
TpBaseMediaCallContent *self,
TpHandle contact);
-void tp_base_media_call_content_offer_media_description (
+void tp_base_media_call_content_offer_media_description_async (
TpBaseMediaCallContent *self,
- TpCallContentMediaDescription *md);
+ TpCallContentMediaDescription *md,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+gboolean tp_base_media_call_content_offer_media_description_finish (
+ TpCallContentMediaDescription *self,
+ GAsyncResult *result,
+ GError **error);
G_END_DECLS