diff options
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__ */ |