From 0442579dea809c1a80bdfcb40f993858c4c020d3 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Thu, 20 Apr 2017 15:26:25 +0200 Subject: [PATCH] Add missing symbol exports. --- coreapi/private.h | 6 +++--- include/linphone/video_definition.h | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/coreapi/private.h b/coreapi/private.h index 1e4f375d5..423a0d4f2 100644 --- a/coreapi/private.h +++ b/coreapi/private.h @@ -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; diff --git a/include/linphone/video_definition.h b/include/linphone/video_definition.h index c89b545d7..f33973778 100644 --- a/include/linphone/video_definition.h +++ b/include/linphone/video_definition.h @@ -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); /** * @}