From 4f021313a7b33be84cf00a8f95a44a48f195f57c Mon Sep 17 00:00:00 2001 From: Andrea Gianarda <andrea.gianarda@belledonne-communications.com> Date: Thu, 3 Aug 2023 15:07:51 +0200 Subject: [PATCH] Add missing macros LINPHONE_PUBLIC to linphone_conference_params_set_hidden and linphone_conference_params_get_hidden --- include/linphone/api/c-conference.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/linphone/api/c-conference.h b/include/linphone/api/c-conference.h index 10adabafe7..b8e57b5526 100644 --- a/include/linphone/api/c-conference.h +++ b/include/linphone/api/c-conference.h @@ -185,18 +185,19 @@ LINPHONE_PUBLIC void linphone_conference_params_set_participant_list_type(Linpho LinphoneConferenceParticipantListType type); /** - * Set the conference as hidden. This means that the contact address will not have any conference releated attribute such as isfocus, the conference ID and the admin status. + * Set the conference as hidden. This means that the contact address will not have any conference releated attribute + * such as isfocus, the conference ID and the admin status. * @param conference The #LinphoneConference object. @notnil * @param hidden Boolean that states whether the conference is hidden or not */ -void linphone_conference_params_set_hidden(LinphoneConferenceParams *params, bool_t hidden); +LINPHONE_PUBLIC void linphone_conference_params_set_hidden(LinphoneConferenceParams *params, bool_t hidden); /** * Get the value of the hidden flag * @param conference The #LinphoneConference object. @notnil * @return whether the conference is hidden or not */ -bool_t linphone_conference_params_is_hidden(const LinphoneConferenceParams *params); +LINPHONE_PUBLIC bool_t linphone_conference_params_is_hidden(const LinphoneConferenceParams *params); /** * Get the participant list type -- GitLab