From bd6add296362557cbaad90acec7dce2d5f6486c3 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Mon, 11 Jan 2016 12:05:54 +0100 Subject: [PATCH] Fix missing symbol exports on Windows. --- coreapi/conference.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/coreapi/conference.h b/coreapi/conference.h index 24d889a92..1f593f009 100644 --- a/coreapi/conference.h +++ b/coreapi/conference.h @@ -45,7 +45,7 @@ void linphone_conference_free(LinphoneConference *obj); int linphone_conference_add_participant(LinphoneConference *obj, LinphoneCall *call); int linphone_conference_remove_participant_with_call(LinphoneConference *obj, LinphoneCall *call); -int linphone_conference_remove_participant(LinphoneConference *obj, const LinphoneAddress *uri); +LINPHONE_PUBLIC int linphone_conference_remove_participant(LinphoneConference *obj, const LinphoneAddress *uri); int linphone_conference_terminate(LinphoneConference *obj); int linphone_conference_enter(LinphoneConference *obj); @@ -57,8 +57,8 @@ int linphone_conference_mute_microphone(LinphoneConference *obj, bool_t val); bool_t linphone_conference_microphone_is_muted(const LinphoneConference *obj); float linphone_conference_get_input_volume(const LinphoneConference *obj); -int linphone_conference_get_participant_count(const LinphoneConference *obj); -MSList *linphone_conference_get_participants(const LinphoneConference *obj); +LINPHONE_PUBLIC int linphone_conference_get_participant_count(const LinphoneConference *obj); +LINPHONE_PUBLIC MSList *linphone_conference_get_participants(const LinphoneConference *obj); int linphone_conference_start_recording(LinphoneConference *obj, const char *path); int linphone_conference_stop_recording(LinphoneConference *obj);