mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-02 11:19:30 +00:00
Deprecate linphone_call_is_in_conference() and linphone_proxy_config_is_registered().
This commit is contained in:
parent
c1968e3fd8
commit
f779be584c
3 changed files with 5 additions and 7 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue