From 1d917f28a09527dba5fb9500a32553994e8fa7db Mon Sep 17 00:00:00 2001 From: "mk5004.lee" Date: Fri, 27 Sep 2019 11:17:14 +0900 Subject: [PATCH] Update doxygen Change-Id: I90721e20000a0a6b1d973eb4d5be6711f66140b0 Signed-off-by: mk5004.lee --- include/app_control.h | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) mode change 100755 => 100644 include/app_control.h diff --git a/include/app_control.h b/include/app_control.h old mode 100755 new mode 100644 index 3d638e0..78fa9e6 --- a/include/app_control.h +++ b/include/app_control.h @@ -1141,7 +1141,6 @@ int app_control_remove_extra_data(app_control_h app_control, const char *key); * @retval #APP_CONTROL_ERROR_KEY_REJECTED Key not available * @see app_control_add_extra_data() * @see app_control_add_extra_data_array() - * @see app_control_get_extra_data() * @see app_control_remove_extra_data() * @see app_control_foreach_extra_data() */ @@ -1251,13 +1250,13 @@ int app_control_foreach_app_matched(app_control_h app_control, app_control_app_m * @return @c 0 on success, * otherwise a negative error value * @retval #APP_CONTROL_ERROR_NONE Successful + * @retval #APP_CONTROL_ERROR_PERMISSION_DENIED Permission denied * @retval #APP_CONTROL_ERROR_INVALID_PARAMETER Invalid parameter * @retval #APP_CONTROL_ERROR_OUT_OF_MEMORY Out of memory * @retval #APP_CONTROL_ERROR_APP_NOT_FOUND The application to run the given launch request is not found * @retval #APP_CONTROL_ERROR_LAUNCH_REJECTED The application cannot be launched in current context * @retval #APP_CONTROL_ERROR_LAUNCH_FAILED Failed to launch the application * @retval #APP_CONTROL_ERROR_TIMED_OUT Failed due to timeout. The application that handles @a app_control may be busy - * @retval #APP_CONTROL_ERROR_PERMISSION_DENIED Permission denied * @post If the launch request is sent for the result, the result will come back through the app_control_reply_cb() from the callee application. Additional replies may be delivered on the app_control_enable_app_started_result_event() called. * @see app_control_reply_to_launch_request() * @see app_control_reply_cb() @@ -1267,18 +1266,18 @@ int app_control_send_launch_request(app_control_h app_control, app_control_reply /** - * @brief Sends the terminate request to the application that is launched by app_control. This API is only effective for some applications that are provided by default for handling platform default app_controls. You are not allowed to terminate other general applications using this API. + * @brief Sends the terminate request to the application that is launched by app_control. This function is only effective for some applications that are provided by default for handling platform default app_controls. You are not allowed to terminate other general applications using this function. * * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif - * @remarks Since Tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif, this API can be used to terminate sub-applications which were launched as group mode by the caller application. - * Once callee application is being terminated by this API, other applications which were launched by the callee application as a group mode will be terminated as well. + * @remarks Since Tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif, this function can be used to terminate sub-applications which were launched as group mode by the caller application. + * Once callee application is being terminated by this function, other applications which were launched by the callee application as a group mode will be terminated as well. * * @param[in] app_control The app_control handle * @return @c 0 on success, * otherwise a negative error value * @retval #APP_CONTROL_ERROR_NONE Successful - * @retval #APP_CONTROL_ERROR_INVALID_PARAMETER Invalid parameter * @retval #APP_CONTROL_ERROR_PERMISSION_DENIED Permission denied + * @retval #APP_CONTROL_ERROR_INVALID_PARAMETER Invalid parameter * @see app_control_send_launch_request() * @see app_control_set_launch_mode() */ @@ -1374,7 +1373,7 @@ int app_control_is_reply_requested(app_control_h app_control, bool *requested); * otherwise a negative error value * @retval #APP_CONTROL_ERROR_NONE Successful * @retval #APP_CONTROL_ERROR_INVALID_PARAMETER Invalid parameter - * @see app_control_set_launch_mode() + * @see app_control_get_launch_mode() * @see app_control_launch_mode_e */ int app_control_set_launch_mode(app_control_h app_control, @@ -1393,7 +1392,7 @@ int app_control_set_launch_mode(app_control_h app_control, * otherwise a negative error value * @retval #APP_CONTROL_ERROR_NONE Successful * @retval #APP_CONTROL_ERROR_INVALID_PARAMETER Invalid parameter - * @see app_control_get_launch_mode() + * @see app_control_set_launch_mode() * @see app_control_launch_mode_e */ int app_control_get_launch_mode(app_control_h app_control, @@ -1437,13 +1436,13 @@ int app_control_enable_app_started_result_event(app_control_h app_control); * @return @c 0 on success, * otherwise a negative error value * @retval #APP_CONTROL_ERROR_NONE Successful + * @retval #APP_CONTROL_ERROR_PERMISSION_DENIED Permission denied * @retval #APP_CONTROL_ERROR_INVALID_PARAMETER Invalid parameter * @retval #APP_CONTROL_ERROR_OUT_OF_MEMORY Out of memory * @retval #APP_CONTROL_ERROR_APP_NOT_FOUND The application to run the given launch request is not found * @retval #APP_CONTROL_ERROR_LAUNCH_REJECTED The application cannot be launched in current context * @retval #APP_CONTROL_ERROR_LAUNCH_FAILED Failed to launch the application * @retval #APP_CONTROL_ERROR_TIMED_OUT Failed due to timeout. The application that handles @a app_control may be busy - * @retval #APP_CONTROL_ERROR_PERMISSION_DENIED Permission denied * @post If the launch request is sent for the result, the result will come back through the app_control_reply_cb() from the callee application. Additional replies may be delivered if app_control_enable_app_started_result_event() was called. * @see app_control_result_cb() * @see app_control_reply_to_launch_request() @@ -1475,13 +1474,13 @@ int app_control_send_launch_request_async(app_control_h app_control, * @return @c 0 on success, * otherwise a negative error value * @retval #APP_CONTROL_ERROR_NONE Successful + * @retval #APP_CONTROL_ERROR_PERMISSION_DENIED Permission denied * @retval #APP_CONTROL_ERROR_INVALID_PARAMETER Invalid parameter * @retval #APP_CONTROL_ERROR_OUT_OF_MEMORY Out of memory * @retval #APP_CONTROL_ERROR_APP_NOT_FOUND The application to run the given launch request is not found * @retval #APP_CONTROL_ERROR_LAUNCH_REJECTED The application cannot be launched in current context * @retval #APP_CONTROL_ERROR_LAUNCH_FAILED Failed to launch the application * @retval #APP_CONTROL_ERROR_TIMED_OUT Failed due to timeout. The application that handles @a app_control may be busy - * @retval #APP_CONTROL_ERROR_PERMISSION_DENIED Permission denied * @see app_control_destroy() */ int app_control_send_launch_request_sync(app_control_h app_control, -- 2.7.4