From 5c8e2ad4ca4caa5d242c4bf61a859b857b6e0f92 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Wed, 18 Feb 2015 15:36:10 +0100 Subject: [PATCH] Document linphone_call_get_core() function. --- coreapi/linphonecore.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/coreapi/linphonecore.h b/coreapi/linphonecore.h index a909bb644..7e3994706 100644 --- a/coreapi/linphonecore.h +++ b/coreapi/linphonecore.h @@ -676,7 +676,14 @@ LINPHONE_PUBLIC void *linphone_call_get_user_data(const LinphoneCall *call); **/ LINPHONE_PUBLIC void linphone_call_set_user_data(LinphoneCall *call, void *ud); +/** + * Get the core that has created the specified call. + * @param[in] call LinphoneCall object + * @return The LinphoneCore object that has created the specified call. + * @ingroup call_control + */ LINPHONE_PUBLIC LinphoneCore *linphone_call_get_core(const LinphoneCall *call); + LINPHONE_PUBLIC LinphoneCallState linphone_call_get_state(const LinphoneCall *call); LINPHONE_PUBLIC bool_t linphone_call_asked_to_autoanswer(LinphoneCall *call);