Fix incorrect order in return value 76/214576/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 24 Sep 2019 06:50:24 +0000 (15:50 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 24 Sep 2019 06:50:24 +0000 (15:50 +0900)
Change-Id: I212fe625101393e112f0107a743b4b79b25781d4
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
include/autofill_manager.h

index 57a41d7..bd1571f 100644 (file)
@@ -84,8 +84,8 @@ typedef bool (*autofill_manager_autofill_service_cb)(const char *app_id, void *u
  * @param[out] amh The autofill manager handle
  * @return 0 on success, otherwise a negative error value
  * @retval #AUTOFILL_ERROR_NONE No error
- * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #AUTOFILL_ERROR_PERMISSION_DENIED The application does not have the privilege to call this function
+ * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #AUTOFILL_ERROR_OUT_OF_MEMORY Out of memory
  * @see autofill_manager_destroy()
  */
@@ -100,8 +100,8 @@ int autofill_manager_create(autofill_manager_h *amh);
  * @param[in] amh The autofill manager handle
  * @return 0 on success, otherwise a negative error value
  * @retval #AUTOFILL_ERROR_NONE No error
- * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #AUTOFILL_ERROR_PERMISSION_DENIED The application does not have the privilege to call this function
+ * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
  * @see autofill_manager_create()
  */
 int autofill_manager_destroy(autofill_manager_h amh);
@@ -117,8 +117,8 @@ int autofill_manager_destroy(autofill_manager_h amh);
  * @param[in] user_data The user data to be passed to the callback function
  * @return 0 on success, otherwise a negative error value
  * @retval #AUTOFILL_ERROR_NONE No error
- * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #AUTOFILL_ERROR_PERMISSION_DENIED The application does not have the privilege to call this function
+ * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #AUTOFILL_ERROR_OPERATION_FAILED Operation failure
  */
 int autofill_manager_connect(autofill_manager_h amh, autofill_manager_connection_status_changed_cb callback, void *user_data);
@@ -133,8 +133,8 @@ int autofill_manager_connect(autofill_manager_h amh, autofill_manager_connection
  * @param[in] app_id The autofill service app ID
  * @return 0 on success, otherwise a negative error value
  * @retval #AUTOFILL_ERROR_NONE No error
- * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #AUTOFILL_ERROR_PERMISSION_DENIED The application does not have the privilege to call this function
+ * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
  * @see autofill_manager_get_autofill_service()
  */
 int autofill_manager_set_autofill_service(autofill_manager_h amh, const char *app_id);
@@ -150,8 +150,8 @@ int autofill_manager_set_autofill_service(autofill_manager_h amh, const char *ap
  * @param[out] service_app_id The autofill service app ID
  * @return 0 on success, otherwise a negative error value
  * @retval #AUTOFILL_ERROR_NONE No error
- * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #AUTOFILL_ERROR_PERMISSION_DENIED The application does not have the privilege to call this function
+ * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
  * @see autofill_manager_set_autofill_service()
  */
 int autofill_manager_get_autofill_service(autofill_manager_h amh, char **service_app_id);