diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-12 22:34:52 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-12 22:36:24 +0800 |
commit | 2f6aec58f110a13b8c370d676bdd9fb6946893ee (patch) | |
tree | 64d9c68db0139ff29b8799d6b3bdddfb0655410a /libempathy/empathy-tp-call.h | |
parent | ce0fe44e47aa8c1b5365d1e3140aff59fcfff4f7 (diff) | |
download | gsoc2013-empathy-2f6aec58f110a13b8c370d676bdd9fb6946893ee.tar gsoc2013-empathy-2f6aec58f110a13b8c370d676bdd9fb6946893ee.tar.gz gsoc2013-empathy-2f6aec58f110a13b8c370d676bdd9fb6946893ee.tar.bz2 gsoc2013-empathy-2f6aec58f110a13b8c370d676bdd9fb6946893ee.tar.lz gsoc2013-empathy-2f6aec58f110a13b8c370d676bdd9fb6946893ee.tar.xz gsoc2013-empathy-2f6aec58f110a13b8c370d676bdd9fb6946893ee.tar.zst gsoc2013-empathy-2f6aec58f110a13b8c370d676bdd9fb6946893ee.zip |
tp-call: add account property
Diffstat (limited to 'libempathy/empathy-tp-call.h')
-rw-r--r-- | libempathy/empathy-tp-call.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-call.h b/libempathy/empathy-tp-call.h index d866a2e6e..c633da3ad 100644 --- a/libempathy/empathy-tp-call.h +++ b/libempathy/empathy-tp-call.h @@ -73,7 +73,8 @@ typedef struct } EmpathyTpCallStream; GType empathy_tp_call_get_type (void) G_GNUC_CONST; -EmpathyTpCall *empathy_tp_call_new (TpChannel *channel); +EmpathyTpCall *empathy_tp_call_new (TpAccount *account, + TpChannel *channel); void empathy_tp_call_close (EmpathyTpCall *call); void empathy_tp_call_accept_incoming_call (EmpathyTpCall *call); @@ -93,6 +94,8 @@ void empathy_tp_call_leave (EmpathyTpCall *self); EmpathyTpCallStatus empathy_tp_call_get_status (EmpathyTpCall *self); +TpAccount * empathy_tp_call_get_account (EmpathyTpCall *self); + G_END_DECLS #endif /* __EMPATHY_TP_CALL_H__ */ |