Update doxygen 33/214833/1
authormk5004.lee <mk5004.lee@samsung.com>
Fri, 27 Sep 2019 02:17:14 +0000 (11:17 +0900)
committermk5004.lee <mk5004.lee@samsung.com>
Fri, 27 Sep 2019 02:17:45 +0000 (11:17 +0900)
Change-Id: I90721e20000a0a6b1d973eb4d5be6711f66140b0
Signed-off-by: mk5004.lee <mk5004.lee@samsung.com>
include/app_control.h [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 3d638e0..78fa9e6
@@ -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,