forked from mirrors/linphone-iphone
Add missing symbol exports.
This commit is contained in:
parent
b7610d5d0b
commit
0442579dea
2 changed files with 7 additions and 7 deletions
|
|
@ -415,8 +415,8 @@ void linphone_call_notify_info_message_received(LinphoneCall *call, const Linpho
|
|||
LinphoneCall * linphone_call_new_outgoing(struct _LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, const LinphoneCallParams *params, LinphoneProxyConfig *cfg);
|
||||
LinphoneCall * linphone_call_new_incoming(struct _LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, SalOp *op);
|
||||
void _linphone_call_set_new_params(LinphoneCall *call, const LinphoneCallParams *params);
|
||||
void linphone_call_set_params(LinphoneCall *call, const LinphoneCallParams *params);
|
||||
const LinphoneCallParams * linphone_call_get_params(LinphoneCall *call);
|
||||
LINPHONE_PUBLIC void linphone_call_set_params(LinphoneCall *call, const LinphoneCallParams *params);
|
||||
LINPHONE_PUBLIC const LinphoneCallParams * linphone_call_get_params(LinphoneCall *call);
|
||||
void linphone_call_set_state(LinphoneCall *call, LinphoneCallState cstate, const char *message);
|
||||
void linphone_call_set_contact_op(LinphoneCall* call);
|
||||
void linphone_call_set_compatible_incoming_call_parameters(LinphoneCall *call, SalMediaDescription *md);
|
||||
|
|
@ -1757,7 +1757,7 @@ struct _LinphoneTransports {
|
|||
|
||||
BELLE_SIP_DECLARE_VPTR_NO_EXPORT(LinphoneTransports);
|
||||
|
||||
LinphoneTransports *linphone_transports_new(void);
|
||||
LINPHONE_PUBLIC LinphoneTransports *linphone_transports_new(void);
|
||||
|
||||
struct _LinphoneVideoActivationPolicy {
|
||||
belle_sip_object_t base;
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ LINPHONE_PUBLIC void linphone_video_definition_set_height(LinphoneVideoDefinitio
|
|||
* @param[in] width The width of the video definition
|
||||
* @param[in] height The height of the video definition
|
||||
*/
|
||||
void linphone_video_definition_set_definition(LinphoneVideoDefinition *vdef, unsigned int width, unsigned int height);
|
||||
LINPHONE_PUBLIC void linphone_video_definition_set_definition(LinphoneVideoDefinition *vdef, unsigned int width, unsigned int height);
|
||||
|
||||
/**
|
||||
* Get the name of the video definition.
|
||||
|
|
@ -124,7 +124,7 @@ LINPHONE_PUBLIC void linphone_video_definition_set_name(LinphoneVideoDefinition
|
|||
* @param[in] vdef2 LinphoneVideoDefinition object
|
||||
* @return A boolean value telling whether the two LinphoneVideoDefinition objects are equal.
|
||||
*/
|
||||
bool_t linphone_video_definition_equals(const LinphoneVideoDefinition *vdef1, const LinphoneVideoDefinition *vdef2);
|
||||
LINPHONE_PUBLIC bool_t linphone_video_definition_equals(const LinphoneVideoDefinition *vdef1, const LinphoneVideoDefinition *vdef2);
|
||||
|
||||
/**
|
||||
* Tells whether two LinphoneVideoDefinition objects are strictly equal (the widths are the same and the heights are the same).
|
||||
|
|
@ -132,14 +132,14 @@ bool_t linphone_video_definition_equals(const LinphoneVideoDefinition *vdef1, co
|
|||
* @param[in] vdef2 LinphoneVideoDefinition object
|
||||
* @return A boolean value telling whether the two LinphoneVideoDefinition objects are strictly equal.
|
||||
*/
|
||||
bool_t linphone_video_definition_strict_equals(const LinphoneVideoDefinition *vdef1, const LinphoneVideoDefinition *vdef2);
|
||||
LINPHONE_PUBLIC bool_t linphone_video_definition_strict_equals(const LinphoneVideoDefinition *vdef1, const LinphoneVideoDefinition *vdef2);
|
||||
|
||||
/**
|
||||
* Tells whether a LinphoneVideoDefinition is undefined.
|
||||
* @param[in] vdef LinphoneVideoDefinition object
|
||||
* @return A boolean value telling whether the LinphoneVideoDefinition is undefined.
|
||||
*/
|
||||
bool_t linphone_video_definition_is_undefined(const LinphoneVideoDefinition *vdef);
|
||||
LINPHONE_PUBLIC bool_t linphone_video_definition_is_undefined(const LinphoneVideoDefinition *vdef);
|
||||
|
||||
/**
|
||||
* @}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue