Deprecate linphone_call_is_in_conference() and linphone_proxy_config_is_registered().

This commit is contained in:
Ghislain MARY 2013-10-07 10:57:25 +02:00
parent c1968e3fd8
commit f779be584c
3 changed files with 5 additions and 7 deletions

View file

@ -2530,10 +2530,6 @@ void linphone_call_set_transfer_state(LinphoneCall* call, LinphoneCallState stat
}
}
/**
* Returns true if the call is part of the conference.
* @ingroup conferencing
**/
bool_t linphone_call_is_in_conference(const LinphoneCall *call) {
return call->params.in_conference;
}

View file

@ -573,10 +573,11 @@ LINPHONE_PUBLIC void linphone_call_start_recording(LinphoneCall *call);
LINPHONE_PUBLIC void linphone_call_stop_recording(LinphoneCall *call);
/**
* Return TRUE if this call is currently part of a conference
*@param call #LinphoneCall
*@return TRUE if part of a conference.
* @param call #LinphoneCall
* @return TRUE if part of a conference.
*
@ingroup call_control
* @deprecated
* @ingroup call_control
*/
LINPHONE_PUBLIC bool_t linphone_call_is_in_conference(const LinphoneCall *call);
/**

View file

@ -93,6 +93,7 @@ void linphone_proxy_config_destroy(LinphoneProxyConfig *obj){
/**
* Returns a boolean indicating that the user is sucessfully registered on the proxy.
* @deprecated Use linphone_proxy_config_get_state() instead.
**/
bool_t linphone_proxy_config_is_registered(const LinphoneProxyConfig *obj){
return obj->state == LinphoneRegistrationOk;