From d52b445814fe34cf2b21dae44f82e69d626b961b Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Mon, 11 Jan 2016 10:43:07 +0100 Subject: [PATCH] Fix automatic wrapper generation for conference. --- coreapi/linphonecore.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/coreapi/linphonecore.h b/coreapi/linphonecore.h index 3eee4c286..df19a5398 100644 --- a/coreapi/linphonecore.h +++ b/coreapi/linphonecore.h @@ -3924,9 +3924,10 @@ LINPHONE_PUBLIC int linphone_core_stop_conference_recording(LinphoneCore *lc); LINPHONE_PUBLIC LinphoneConference *linphone_core_get_conference(LinphoneCore *lc); /** * Get URIs of all participants of one conference + * The returned MSList contains URIs of all participant. That list must be + * freed after use and each URI must be unref with linphone_address_unref() * @param obj A #LinphoneConference - * @return A #MSList containing URIs of all participant. That list must be - * freed after utilisation and each URI must be unref with linphone_address_unref() + * @return \mslist{LinphoneAddress} */ LINPHONE_PUBLIC MSList *linphone_conference_get_participants(const LinphoneConference *obj); /**