diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:10:49 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:10:49 +0800 |
commit | e74655ef444d2bf4e1fb1d54881bff1069c3fe1a (patch) | |
tree | fc960a8a8e9863a79f164d981ba55f439a8072ba /libempathy/empathy-tp-call.h | |
parent | cdf88fc610d44b191d3defd6e467c8efe548d8d5 (diff) | |
download | gsoc2013-empathy-e74655ef444d2bf4e1fb1d54881bff1069c3fe1a.tar gsoc2013-empathy-e74655ef444d2bf4e1fb1d54881bff1069c3fe1a.tar.gz gsoc2013-empathy-e74655ef444d2bf4e1fb1d54881bff1069c3fe1a.tar.bz2 gsoc2013-empathy-e74655ef444d2bf4e1fb1d54881bff1069c3fe1a.tar.lz gsoc2013-empathy-e74655ef444d2bf4e1fb1d54881bff1069c3fe1a.tar.xz gsoc2013-empathy-e74655ef444d2bf4e1fb1d54881bff1069c3fe1a.tar.zst gsoc2013-empathy-e74655ef444d2bf4e1fb1d54881bff1069c3fe1a.zip |
Port to tp-glib API and cleanup the code
svn path=/trunk/; revision=900
Diffstat (limited to 'libempathy/empathy-tp-call.h')
-rw-r--r-- | libempathy/empathy-tp-call.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/libempathy/empathy-tp-call.h b/libempathy/empathy-tp-call.h index b0c320826..f5333bba5 100644 --- a/libempathy/empathy-tp-call.h +++ b/libempathy/empathy-tp-call.h @@ -21,15 +21,11 @@ #ifndef __EMPATHY_TP_CALL_H__ #define __EMPATHY_TP_CALL_H__ -#include <libtelepathy/tp-chan.h> -#include <libtelepathy/tp-conn.h> +#include <telepathy-glib/connection.h> +#include <telepathy-glib/channel.h> #include <libmissioncontrol/mission-control.h> -#include <libempathy/empathy-chandler.h> -#include <libempathy/empathy-contact.h> -#include <libempathy/empathy-tp-group.h> - G_BEGIN_DECLS #define EMPATHY_TYPE_TP_CALL (empathy_tp_call_get_type ()) @@ -72,10 +68,9 @@ typedef struct } EmpathyTpCallStream; GType empathy_tp_call_get_type (void) G_GNUC_CONST; -EmpathyTpCall *empathy_tp_call_new (TpConn *connection, TpChan *channel); +EmpathyTpCall *empathy_tp_call_new (TpConnection *connection, TpChannel *channel); void empathy_tp_call_accept_incoming_call (EmpathyTpCall *call); -void empathy_tp_call_close_channel (EmpathyTpCall *call); void empathy_tp_call_request_video_stream_direction (EmpathyTpCall *call, gboolean is_sending); void empathy_tp_call_add_preview_video (EmpathyTpCall *call, |