From b897bf1e118e69764da20ef6668ef5d9ec1653e8 Mon Sep 17 00:00:00 2001 From: chenqiyang <1406175257@qq.com> Date: 星期四, 25 五月 2023 09:33:38 +0800 Subject: [PATCH] 增加监视结束国际化 --- Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/api/c-participant-imdn-state.h | 23 +++++++++++++---------- 1 files changed, 13 insertions(+), 10 deletions(-) diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/api/c-participant-imdn-state.h b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/api/c-participant-imdn-state.h index b03a715..1e781da 100755 --- a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/api/c-participant-imdn-state.h +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/linphone.framework/Headers/api/c-participant-imdn-state.h @@ -35,32 +35,35 @@ /** * Increment reference count of LinphoneParticipantImdnState object. + * @param state the #LinphoneParticipantImdnState object @notnil + * @return the same #LinphoneParticipantImdnState object @notnil **/ LINPHONE_PUBLIC LinphoneParticipantImdnState *linphone_participant_imdn_state_ref (LinphoneParticipantImdnState *state); /** * Decrement reference count of LinphoneParticipantImdnState object. + * @param state the #LinphoneParticipantImdnState object @notnil **/ LINPHONE_PUBLIC void linphone_participant_imdn_state_unref (LinphoneParticipantImdnState *state); /** * Retrieve the user pointer associated with a LinphoneParticipantImdnState. - * @param[in] state A LinphoneParticipantImdnState object - * @return The user pointer associated with the LinphoneParticipantImdnState. + * @param state A LinphoneParticipantImdnState object @notnil + * @return The user pointer associated with the LinphoneParticipantImdnState. @maybenil **/ LINPHONE_PUBLIC void *linphone_participant_imdn_state_get_user_data(const LinphoneParticipantImdnState *state); /** * Assign a user pointer to a LinphoneParticipantImdnState. - * @param[in] state A LinphoneParticipantImdnState object - * @param[in] ud The user pointer to associate with the LinphoneParticipantImdnState + * @param state A LinphoneParticipantImdnState object @notnil + * @param user_data The user pointer to associate with the LinphoneParticipantImdnState. @maybenil **/ -LINPHONE_PUBLIC void linphone_participant_imdn_state_set_user_data(LinphoneParticipantImdnState *state, void *ud); +LINPHONE_PUBLIC void linphone_participant_imdn_state_set_user_data(LinphoneParticipantImdnState *state, void *user_data); /** * Get the participant concerned by a LinphoneParticipantImdnState. - * @param[in] state A LinphoneParticipantImdnState object - * @return The participant concerned by the LinphoneParticipantImdnState + * @param state A LinphoneParticipantImdnState object @notnil + * @return The #LinphoneParticipant concerned by the LinphoneParticipantImdnState @notnil */ LINPHONE_PUBLIC const LinphoneParticipant *linphone_participant_imdn_state_get_participant ( const LinphoneParticipantImdnState *state @@ -68,14 +71,14 @@ /** * Get the chat message state the participant is in. - * @param state A LinphoneParticipantImdnState object - * @return The chat message state the participant is in + * @param state A LinphoneParticipantImdnState object @notnil + * @return The #LinphoneChatMessageState the participant is in */ LINPHONE_PUBLIC LinphoneChatMessageState linphone_participant_imdn_state_get_state (const LinphoneParticipantImdnState *state); /** * Get the timestamp at which a participant has reached the state described by a LinphoneParticipantImdnState. - * @param[in] state A LinphoneParticipantImdnState object + * @param state A LinphoneParticipantImdnState object @notnil * @return The timestamp at which the participant has reached the state described in the LinphoneParticipantImdnState */ LINPHONE_PUBLIC time_t linphone_participant_imdn_state_get_state_change_time (const LinphoneParticipantImdnState *state); -- Gitblit v1.8.0