Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
f779be58
Commit
f779be58
authored
Oct 07, 2013
by
Ghislain MARY
Browse files
Deprecate linphone_call_is_in_conference() and linphone_proxy_config_is_registered().
parent
c1968e3f
Changes
3
Hide whitespace changes
Inline
Side-by-side
coreapi/linphonecall.c
View file @
f779be58
...
...
@@ -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
;
}
...
...
coreapi/linphonecore.h
View file @
f779be58
...
...
@@ -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
);
/**
...
...
coreapi/proxy.c
View file @
f779be58
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment