From 2265a8478325a04871aab6a86d49c28d7d65443a Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期一, 29 五月 2023 15:17:01 +0800 Subject: [PATCH] 增加开锁二次确认弹窗 --- HDLLinPhoneSDK(OC)/HDLLinPhoneSDK/linphone-sdk/apple-darwin/Frameworks/linphone.framework/Headers/headers.h | 23 +++++++++++------------ 1 files changed, 11 insertions(+), 12 deletions(-) diff --git "a/HDLLinPhoneSDK\357\274\210OC\357\274\211/HDLLinPhoneSDK/linphone-sdk/apple-darwin/Frameworks/linphone.framework/Headers/headers.h" "b/HDLLinPhoneSDK\357\274\210OC\357\274\211/HDLLinPhoneSDK/linphone-sdk/apple-darwin/Frameworks/linphone.framework/Headers/headers.h" old mode 100644 new mode 100755 index 7037215..8e2d2ce --- "a/HDLLinPhoneSDK\357\274\210OC\357\274\211/HDLLinPhoneSDK/linphone-sdk/apple-darwin/Frameworks/linphone.framework/Headers/headers.h" +++ "b/HDLLinPhoneSDK\357\274\210OC\357\274\211/HDLLinPhoneSDK/linphone-sdk/apple-darwin/Frameworks/linphone.framework/Headers/headers.h" @@ -46,28 +46,27 @@ /** * Search for a given header name and return its value. - * @param obj the #LinphoneHeaders object - * @param name the header's name - * @return the header's value or NULL if not found. + * @param headers the #LinphoneHeaders object @notnil + * @param name the header's name @notnil + * @return the header's value or NULL if not found. @maybenil **/ -LINPHONE_PUBLIC const char* linphone_headers_get_value(LinphoneHeaders *obj, const char *header_name); +LINPHONE_PUBLIC const char* linphone_headers_get_value(LinphoneHeaders *headers, const char *header_name); /** * Add given header name and corresponding value. - * @param obj the #LinphoneHeaders object - * @param name the header's name - * @param the header's value + * @param headers the #LinphoneHeaders object @notnil + * @param name the header's name @notnil + * @param value the header's value @maybenil **/ -LINPHONE_PUBLIC void linphone_headers_add(LinphoneHeaders *obj, const char *name, const char *value); +LINPHONE_PUBLIC void linphone_headers_add(LinphoneHeaders *headers, const char *name, const char *value); /** * Add given header name and corresponding value. - * @param obj the #LinphoneHeaders object - * @param name the header's name - * @param the header's value + * @param headers the #LinphoneHeaders object @notnil + * @param name the header's name @notnil **/ -LINPHONE_PUBLIC void linphone_headers_remove(LinphoneHeaders *obj, const char *name); +LINPHONE_PUBLIC void linphone_headers_remove(LinphoneHeaders *headers, const char *name); /** -- Gitblit v1.8.0