diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-01-10 00:14:10 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-10 00:14:10 +0800 |
commit | a225d6d620e17306dbc5c1e7b7b886046e24c9db (patch) | |
tree | 535e018303a12848452434e69387f635d9a2c667 /libempathy/empathy-tp-call.h | |
parent | 3fc0800fa97d410b2ce39ee5b61e1a49967d4b06 (diff) | |
download | gsoc2013-empathy-a225d6d620e17306dbc5c1e7b7b886046e24c9db.tar gsoc2013-empathy-a225d6d620e17306dbc5c1e7b7b886046e24c9db.tar.gz gsoc2013-empathy-a225d6d620e17306dbc5c1e7b7b886046e24c9db.tar.bz2 gsoc2013-empathy-a225d6d620e17306dbc5c1e7b7b886046e24c9db.tar.lz gsoc2013-empathy-a225d6d620e17306dbc5c1e7b7b886046e24c9db.tar.xz gsoc2013-empathy-a225d6d620e17306dbc5c1e7b7b886046e24c9db.tar.zst gsoc2013-empathy-a225d6d620e17306dbc5c1e7b7b886046e24c9db.zip |
Add a function to explicitly set the remote candidate on outgoing calls instead of relying on the group interface
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
svn path=/trunk/; revision=2165
Diffstat (limited to 'libempathy/empathy-tp-call.h')
-rw-r--r-- | libempathy/empathy-tp-call.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libempathy/empathy-tp-call.h b/libempathy/empathy-tp-call.h index 29a79c64e..5724963f7 100644 --- a/libempathy/empathy-tp-call.h +++ b/libempathy/empathy-tp-call.h @@ -27,6 +27,8 @@ #include <glib.h> #include <telepathy-glib/channel.h> +#include "empathy-contact.h" + G_BEGIN_DECLS #define EMPATHY_TYPE_TP_CALL (empathy_tp_call_get_type ()) @@ -73,6 +75,8 @@ GType empathy_tp_call_get_type (void) G_GNUC_CONST; EmpathyTpCall *empathy_tp_call_new (TpChannel *channel); void empathy_tp_call_close (EmpathyTpCall *call); +void empathy_tp_call_to (EmpathyTpCall *call, EmpathyContact *contact); + void empathy_tp_call_accept_incoming_call (EmpathyTpCall *call); void empathy_tp_call_request_video_stream_direction (EmpathyTpCall *call, gboolean is_sending); |