From cc00059dcd4815018c76180c3456962223e0c42e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grisez?= Date: Wed, 29 Mar 2017 14:39:03 +0200 Subject: [PATCH] Prevent LinphoneAccountCreatorResponseCbs and LinphoneAccountCreatorRequestsCbs from wrapping --- include/linphone/account_creator.h | 26 +++++++++++++++++ .../linphone/account_creator_request_engine.h | 29 +++++++++++++++++++ 2 files changed, 55 insertions(+) diff --git a/include/linphone/account_creator.h b/include/linphone/account_creator.h index fe8b5fed7..30f48556f 100644 --- a/include/linphone/account_creator.h +++ b/include/linphone/account_creator.h @@ -300,6 +300,7 @@ LINPHONE_DEPRECATED LINPHONE_PUBLIC const char * linphone_account_creator_get_ro * Get the LinphoneAccountCreatorResponseCbs object associated with a LinphoneAccountCreator. * @param[in] creator LinphoneAccountCreator object * @return The LinphoneAccountCreatorResponseCbs object associated with the LinphoneAccountCreator. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorResponseCbs * linphone_account_creator_get_responses_cbs(const LinphoneAccountCreator *creator); @@ -307,6 +308,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorResponseCbs * linphone_account_creator_get * Get the LinphoneAccountCreatorRequestCbs object associated with a LinphoneAccountCreator. * @param[in] creator LinphoneAccountCreator object * @return The LinphoneAccountCreatorRequestCbs object associated with the LinphoneAccountCreator. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestCbs * linphone_account_creator_get_requests_cbs(const LinphoneAccountCreator *creator); @@ -400,12 +402,14 @@ LINPHONE_PUBLIC LinphoneRequestStatus linphone_account_creator_update_password_c * Acquire a reference to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @return The same LinphoneAccountCreatorResponseCbs object. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorResponseCbs * linphone_account_creator_responses_cbs_ref(LinphoneAccountCreatorResponseCbs *responses_cbs); /** * Release a reference to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_unref(LinphoneAccountCreatorResponseCbs *responses_cbs); @@ -413,6 +417,7 @@ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_unref(LinphoneAccoun * Retrieve the user pointer associated with a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @return The user pointer associated with the LinphoneAccountCreatorResponseCbs object. + * @donotwrap **/ LINPHONE_PUBLIC void *linphone_account_creator_responses_cbs_get_user_data(const LinphoneAccountCreatorResponseCbs *responses_cbs); @@ -420,6 +425,7 @@ LINPHONE_PUBLIC void *linphone_account_creator_responses_cbs_get_user_data(const * Assign a user pointer to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @param[in] ud The user pointer to associate with the LinphoneAccountCreatorResponseCbs object. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_user_data(LinphoneAccountCreatorResponseCbs *responses_cbs, void *ud); @@ -427,6 +433,7 @@ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_user_data(Linpho * Get the create account request. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @return The current create account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_responses_cbs_get_create_account_cb(const LinphoneAccountCreatorResponseCbs *responses_cbs); @@ -434,6 +441,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_resp * Assign a user pointer to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @param[in] cb The create account request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_create_account_cb(LinphoneAccountCreatorResponseCbs *responses_cbs, LinphoneAccountCreatorResponseFunc cb); @@ -441,6 +449,7 @@ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_create_account_c * Get the is account exist request. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @return The current is account exist request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_responses_cbs_get_is_account_exist_cb(const LinphoneAccountCreatorResponseCbs *responses_cbs); @@ -448,6 +457,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_resp * Assign a user pointer to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @param[in] cb The is account exist request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_is_account_exist_cb(LinphoneAccountCreatorResponseCbs *responses_cbs, LinphoneAccountCreatorResponseFunc cb); @@ -455,6 +465,7 @@ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_is_account_exist * Get the activate account request. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @return The current activate account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_responses_cbs_get_activate_account_cb(const LinphoneAccountCreatorResponseCbs *responses_cbs); @@ -462,6 +473,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_resp * Assign a user pointer to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @param[in] cb The activate account request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_activate_account_cb(LinphoneAccountCreatorResponseCbs *responses_cbs, LinphoneAccountCreatorResponseFunc cb); @@ -469,6 +481,7 @@ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_activate_account * Get the is account activated request. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @return The current is account activated request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_responses_cbs_get_is_account_activated_cb(const LinphoneAccountCreatorResponseCbs *responses_cbs); @@ -476,6 +489,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_resp * Assign a user pointer to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @param[in] cb The is account activated request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_is_account_activated_cb(LinphoneAccountCreatorResponseCbs *responses_cbs, LinphoneAccountCreatorResponseFunc cb); @@ -483,6 +497,7 @@ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_is_account_activ * Get the link account request. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @return The current link account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_responses_cbs_get_link_account_cb(const LinphoneAccountCreatorResponseCbs *responses_cbs); @@ -490,6 +505,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_resp * Assign a user pointer to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @param[in] cb The link account request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_link_account_cb(LinphoneAccountCreatorResponseCbs *responses_cbs, LinphoneAccountCreatorResponseFunc cb); @@ -497,6 +513,7 @@ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_link_account_cb( * Get the activate alias request. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @return The current link account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_responses_cbs_get_activate_alias_cb(const LinphoneAccountCreatorResponseCbs *responses_cbs); @@ -504,6 +521,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_resp * Assign a user pointer to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @param[in] cb The activate alias request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_activate_alias_cb(LinphoneAccountCreatorResponseCbs *responses_cbs, LinphoneAccountCreatorResponseFunc cb); @@ -511,6 +529,7 @@ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_activate_alias_c * Get the is alias used request. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @return The current is alias used request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_responses_cbs_get_is_alias_used_cb(const LinphoneAccountCreatorResponseCbs *responses_cbs); @@ -518,6 +537,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_resp * Assign a user pointer to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @param[in] cb The is alias used request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_is_alias_used_cb(LinphoneAccountCreatorResponseCbs *responses_cbs, LinphoneAccountCreatorResponseFunc cb); @@ -525,6 +545,7 @@ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_is_alias_used_cb * Get the is account linked request. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @return The current is account linked request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_responses_cbs_get_is_account_linked_cb(const LinphoneAccountCreatorResponseCbs *responses_cbs); @@ -532,6 +553,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_resp * Assign a user pointer to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @param[in] cb The is account linked request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_is_account_linked_cb(LinphoneAccountCreatorResponseCbs *responses_cbs, LinphoneAccountCreatorResponseFunc cb); @@ -539,6 +561,7 @@ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_is_account_linke * Get the recover account request. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @return The current recover account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_responses_cbs_get_recover_account_cb(const LinphoneAccountCreatorResponseCbs *responses_cbs); @@ -546,6 +569,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_resp * Assign a user pointer to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @param[in] cb The recover account request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_recover_account_cb(LinphoneAccountCreatorResponseCbs *responses_cbs, LinphoneAccountCreatorResponseFunc cb); @@ -553,6 +577,7 @@ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_recover_account_ * Get the update account request. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @return The current update account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_responses_cbs_get_update_account_cb(const LinphoneAccountCreatorResponseCbs *responses_cbs); @@ -560,6 +585,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorResponseFunc linphone_account_creator_resp * Assign a user pointer to a LinphoneAccountCreatorResponseCbs object. * @param[in] responses_cbs LinphoneAccountCreatorResponseCbs object. * @param[in] cb The update account request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_responses_cbs_set_update_account_cb(LinphoneAccountCreatorResponseCbs *responses_cbs, LinphoneAccountCreatorResponseFunc cb); diff --git a/include/linphone/account_creator_request_engine.h b/include/linphone/account_creator_request_engine.h index a0f4f7236..3094887d9 100644 --- a/include/linphone/account_creator_request_engine.h +++ b/include/linphone/account_creator_request_engine.h @@ -42,6 +42,7 @@ typedef LinphoneRequestStatus (*LinphoneAccountCreatorRequestFunc)(LinphoneAccou /** * Create a new LinphoneAccountCreatorRequestCbs object. * @return a new LinphoneAccountCreatorRequestCbs object. + * @donotwrap **/ LinphoneAccountCreatorRequestCbs * linphone_account_creator_requests_cbs_new(void); @@ -49,12 +50,14 @@ LinphoneAccountCreatorRequestCbs * linphone_account_creator_requests_cbs_new(voi * Acquire a reference to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The same LinphoneAccountCreatorRequestCbs object. + * @donotwrap **/ LinphoneAccountCreatorRequestCbs * linphone_account_creator_requests_cbs_ref(LinphoneAccountCreatorRequestCbs *requests_cbs); /** * Release a reference to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. + * @donotwrap **/ void linphone_account_creator_requests_cbs_unref(LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -62,6 +65,7 @@ void linphone_account_creator_requests_cbs_unref(LinphoneAccountCreatorRequestCb * Retrieve the user pointer associated with a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The user pointer associated with the LinphoneAccountCreatorRequestCbs object. + * @donotwrap **/ LINPHONE_PUBLIC void *linphone_account_creator_requests_cbs_get_user_data(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -69,6 +73,7 @@ LINPHONE_PUBLIC void *linphone_account_creator_requests_cbs_get_user_data(const * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] ud The user pointer to associate with the LinphoneAccountCreatorRequestCbs object. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_user_data(LinphoneAccountCreatorRequestCbs *requests_cbs, void *ud); @@ -76,6 +81,7 @@ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_user_data(Linphon * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] cb The constructor of account creator requests. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_constructor_cb(LinphoneAccountCreatorRequestCbs *requests_cbs, LinphoneAccountCreatorRequestFunc cb); @@ -83,6 +89,7 @@ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_constructor_cb(Li * Get the constructor of account creator requests. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The current constructor of create account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_requests_cbs_get_constructor_cb(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -90,6 +97,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_reque * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] cb The destructor. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_destructor_cb(LinphoneAccountCreatorRequestCbs *requests_cbs, LinphoneAccountCreatorRequestFunc cb); @@ -97,6 +105,7 @@ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_destructor_cb(Lin * Get the destructor of create account request. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The current destructor of create account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_requests_cbs_get_destructor_cb(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -104,6 +113,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_reque * Get the create account request. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The current create account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_requests_cbs_get_create_account_cb(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -111,6 +121,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_reque * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] cb The create account request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_create_account_cb(LinphoneAccountCreatorRequestCbs *requests_cbs, LinphoneAccountCreatorRequestFunc cb); @@ -118,6 +129,7 @@ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_create_account_cb * Get the is account exist request. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The current is account exist request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_requests_cbs_get_is_account_exist_cb(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -125,6 +137,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_reque * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] cb The is account exist request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_is_account_exist_cb(LinphoneAccountCreatorRequestCbs *requests_cbs, LinphoneAccountCreatorRequestFunc cb); @@ -132,6 +145,7 @@ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_is_account_exist_ * Get the activate account request. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The current activate account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_requests_cbs_get_activate_account_cb(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -139,6 +153,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_reque * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] cb The activate account request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_activate_account_cb(LinphoneAccountCreatorRequestCbs *requests_cbs, LinphoneAccountCreatorRequestFunc cb); @@ -146,6 +161,7 @@ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_activate_account_ * Get the is account activated request. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The current is account activated request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_requests_cbs_get_is_account_activated_cb(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -153,6 +169,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_reque * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] cb The is account activated request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_is_account_activated_cb(LinphoneAccountCreatorRequestCbs *requests_cbs, LinphoneAccountCreatorRequestFunc cb); @@ -160,6 +177,7 @@ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_is_account_activa * Get the link account request. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The current link account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_requests_cbs_get_link_account_cb(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -167,6 +185,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_reque * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] cb The link account request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_link_account_cb(LinphoneAccountCreatorRequestCbs *requests_cbs, LinphoneAccountCreatorRequestFunc cb); @@ -174,6 +193,7 @@ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_link_account_cb(L * Get the activate alias request. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The current link account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_requests_cbs_get_activate_alias_cb(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -181,6 +201,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_reque * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] cb The activate alias request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_activate_alias_cb(LinphoneAccountCreatorRequestCbs *requests_cbs, LinphoneAccountCreatorRequestFunc cb); @@ -188,6 +209,7 @@ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_activate_alias_cb * Get the is alias used request. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The current is alias used request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_requests_cbs_get_is_alias_used_cb(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -195,6 +217,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_reque * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] cb The is alias used request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_is_alias_used_cb(LinphoneAccountCreatorRequestCbs *requests_cbs, LinphoneAccountCreatorRequestFunc cb); @@ -202,6 +225,7 @@ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_is_alias_used_cb( * Get the is account linked request. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The current is account linked request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_requests_cbs_get_is_account_linked_cb(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -209,6 +233,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_reque * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] cb The is account linked request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_is_account_linked_cb(LinphoneAccountCreatorRequestCbs *requests_cbs, LinphoneAccountCreatorRequestFunc cb); @@ -216,6 +241,7 @@ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_is_account_linked * Get the recover account request. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The current recover account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_requests_cbs_get_recover_account_cb(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -223,6 +249,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_reque * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] cb The recover account request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_recover_account_cb(LinphoneAccountCreatorRequestCbs *requests_cbs, LinphoneAccountCreatorRequestFunc cb); @@ -230,6 +257,7 @@ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_recover_account_c * Get the update account request. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @return The current update account request. + * @donotwrap **/ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_requests_cbs_get_update_account_cb(const LinphoneAccountCreatorRequestCbs *requests_cbs); @@ -237,6 +265,7 @@ LINPHONE_PUBLIC LinphoneAccountCreatorRequestFunc linphone_account_creator_reque * Assign a user pointer to a LinphoneAccountCreatorRequestCbs object. * @param[in] requests_cbs LinphoneAccountCreatorRequestCbs object. * @param[in] cb The update account request to be used. + * @donotwrap **/ LINPHONE_PUBLIC void linphone_account_creator_requests_cbs_set_update_account_cb(LinphoneAccountCreatorRequestCbs *requests_cbs, LinphoneAccountCreatorRequestFunc cb);