Update doxygen 50/214750/2
authormk5004.lee <mk5004.lee@samsung.com>
Thu, 26 Sep 2019 05:26:12 +0000 (14:26 +0900)
committermk5004.lee <mk5004.lee@samsung.com>
Fri, 27 Sep 2019 00:05:46 +0000 (09:05 +0900)
- change file mode 664

Change-Id: I8942d5bd021218a7d91fa8a8fb8cf37e66b7c69b
Signed-off-by: mk5004.lee <mk5004.lee@samsung.com>
20 files changed:
lib/CMakeLists.txt [changed mode: 0755->0644]
lib/LICENSE [changed mode: 0755->0644]
lib/include/shortcut.h [changed mode: 0755->0644]
lib/include/shortcut_error.h [changed mode: 0755->0644]
lib/include/shortcut_internal.h [changed mode: 0755->0644]
lib/include/shortcut_manager.h [changed mode: 0755->0644]
lib/include/shortcut_private.h [changed mode: 0755->0644]
lib/shortcut.pc.in [changed mode: 0755->0644]
lib/src/shortcut_db.c [changed mode: 0755->0644]
lib/src/shortcut_error.c [changed mode: 0755->0644]
lib/src/shortcut_internal.c [changed mode: 0755->0644]
lib/src/shortcut_manager.c [changed mode: 0755->0644]
packaging/libshortcut.spec [changed mode: 0755->0644]
pkgmgr_shortcut/include/dlist.h [changed mode: 0755->0644]
pkgmgr_shortcut/src/dlist.c [changed mode: 0755->0644]
pkgmgr_shortcut/src/service_register.c [changed mode: 0755->0644]
test/application.c [changed mode: 0755->0644]
test/homescreen.c [changed mode: 0755->0644]
test/icon.c [changed mode: 0755->0644]
test/shortcut.c [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
index b598224..78d77d4
@@ -43,7 +43,7 @@ extern "C" {
  * @param[in] ret The result value, it could be @c 0 if it succeeds to add a shortcut,
  *                otherwise it returns an errno
  * @param[in] pid The process ID of who handle this add_to_home request
- * @param[in] data The callback data
+ * @param[in] user_data The user data passed from the registration function
  * @return int @c 0 if there is no error, otherwise errno
  * @see add_to_home_shortcut()
  */
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
index 7feb6ec..2318b6f
@@ -105,11 +105,11 @@ typedef int (*result_cb)(int ret, void *user_data);
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #SHORTCUT_ERROR_NONE Successful
+ * @retval #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
+ * @retval #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
  * @retval #SHORTCUT_ERROR_INVALID_PARAMETER Invalid function parameter
  * @retval #SHORTCUT_ERROR_OUT_OF_MEMORY Out of memory
  * @retval #SHORTCUT_ERROR_IO_ERROR I/O Error
- * @retval #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
- * @retval #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
  * @retval #SHORTCUT_ERROR_RESOURCE_BUSY Device or resource busy
  * @retval #SHORTCUT_ERROR_NO_SPACE There is no space to add a new shortcut
  * @retval #SHORTCUT_ERROR_EXIST Shortcut is already exist
@@ -117,7 +117,7 @@ typedef int (*result_cb)(int ret, void *user_data);
  * @retval #SHORTCUT_ERROR_COMM Connection not established or communication problem
  * @pre You have to prepare the callback function.
  * @post You have to check the return status from the callback function which is passed by the argument.
- * @see result_cb
+ * @see result_cb()
  * @par Example
  * @code
 #include <stdio.h>
@@ -171,16 +171,16 @@ int shortcut_add_to_home(const char *name, shortcut_type type, const char *uri,
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #SHORTCUT_ERROR_NONE Successful
+ * @retval #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
+ * @retval #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
  * @retval #SHORTCUT_ERROR_INVALID_PARAMETER Invalid function parameter
  * @retval #SHORTCUT_ERROR_OUT_OF_MEMORY Out of memory
  * @retval #SHORTCUT_ERROR_IO_ERROR I/O Error
- * @retval #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
- * @retval #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
  * @retval #SHORTCUT_ERROR_FAULT Unrecoverable error
  * @retval #SHORTCUT_ERROR_COMM Connection not established or communication problem
  * @pre You have to prepare the callback function.
  * @post You have to check the return status from the callback function which is passed by the argument.
- * @see result_cb
+ * @see result_cb()
  * @see shortcut_widget_size_e
  * @par Example
  * @code
@@ -228,15 +228,15 @@ int shortcut_add_to_home_widget(const char *name, shortcut_widget_size_e size, c
  * @param[in] user_data The callback data that is used in the callback function
  * @return 0 on success, otherwise a negative error value
  * @retval #SHORTCUT_ERROR_NONE Successful
+ * @retval #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
+ * @retval #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
  * @retval #SHORTCUT_ERROR_INVALID_PARAMETER Invalid function parameter
  * @retval #SHORTCUT_ERROR_OUT_OF_MEMORY Out of memory
  * @retval #SHORTCUT_ERROR_IO_ERROR I/O Error
- * @retval #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
  * @retval #SHORTCUT_ERROR_COMM Connection not established or communication problem
- * @retval #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
  * @pre You have to prepare the callback function.
  * @post You have to check the return status from the callback function which is passed by the argument.
- * @see result_cb
+ * @see result_cb()
  * @par Example
  * @code
 #include <shortcut_manager.h>
@@ -293,13 +293,13 @@ typedef int (*shortcut_list_cb)(const char *package_name, const char *icon, cons
  * @param[in] data The callback data that is used in the callback function
  * @return The return type (int)
  * @retval @c N Number of items (call count of the callback function)
+ * @retval #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
+ * @retval #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
  * @retval #SHORTCUT_ERROR_INVALID_PARAMETER Invalid function parameter
  * @retval #SHORTCUT_ERROR_OUT_OF_MEMORY Out of memory
  * @retval #SHORTCUT_ERROR_IO_ERROR I/O Error
- * @retval #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
  * @retval #SHORTCUT_ERROR_FAULT Unrecoverable error
  * @retval #SHORTCUT_ERROR_COMM Connection not established or communication problem
- * @retval #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
  * @pre You have to prepare the callback function.
  * @post You have to check the return status from the callback function which is passed by the argument.
  *
@@ -331,11 +331,11 @@ typedef int (*shortcut_request_cb)(const char *package_name, const char *name, i
 
 
 /**
- * @brief Called to the shortcut_remove_from_home request.
+ * @brief Called to the shortcut_remove_from_home() request.
  * @since_tizen 3.0
  * @param[in] package_name The name of package
  * @param[in] name The name of the created shortcut icon
- * @param[in] sender_pid The process ID of who request shortcut_remove_from_home
+ * @param[in] sender_pid The process ID of who request shortcut_remove_from_home()
  * @param[in] user_data  The user data passed from the callback register function
  * @return The result of handling a shortcut remove request\n
  *             This returns @c 0 if the remove_from_home request is handled successfully,
@@ -357,12 +357,12 @@ typedef int (*shortcut_remove_cb)(const char *package_name, const char *name, in
  * @param[in] data The callback data to deliver to the callback function
  * @return @c 0 on success, otherwise a negative error value
  * @retval #SHORTCUT_ERROR_NONE Successful
+ * @retval #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
+ * @retval #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
  * @retval #SHORTCUT_ERROR_INVALID_PARAMETER Invalid function parameter
  * @retval #SHORTCUT_ERROR_OUT_OF_MEMORY Out of memory
  * @retval #SHORTCUT_ERROR_IO_ERROR I/O Error
- * @retval #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
  * @retval #SHORTCUT_ERROR_COMM Connection not established or communication problem
- * @retval #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
  * @pre You have to prepare a callback function.
  * @post If a request is sent from the application, the registered callback will be invoked.
  * @see request_cb_t
@@ -381,7 +381,7 @@ int shortcut_set_request_cb(shortcut_request_cb request_cb, void *data);
  * @exception #SHORTCUT_ERROR_NONE Successful
  * @exception #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
  * @exception #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
- * @see shortcut_set_request_cb
+ * @see shortcut_set_request_cb()
  * @see get_last_result()
  */
 void shortcut_unset_request_cb(void);
@@ -399,12 +399,12 @@ void shortcut_unset_request_cb(void);
  * @param[in] data The callback data to deliver to the callback function
  * @return 0 on success, otherwise a negative error value
  * @retval #SHORTCUT_ERROR_NONE Successful
+ * @retval #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
+ * @retval #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
  * @retval #SHORTCUT_ERROR_INVALID_PARAMETER Invalid function parameter
  * @retval #SHORTCUT_ERROR_OUT_OF_MEMORY Out of memory
  * @retval #SHORTCUT_ERROR_IO_ERROR I/O Error
- * @retval #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
  * @retval #SHORTCUT_ERROR_COMM Connection not established or communication problem
- * @retval #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
  * @pre You have to prepare a callback function.
  * @post If a request is sent from the application, the registered callback will be invoked.
  * @see remove_cb_t
@@ -423,7 +423,7 @@ int shortcut_set_remove_cb(shortcut_remove_cb remove_cb, void *data);
  * @exception #SHORTCUT_ERROR_NONE Successful
  * @exception #SHORTCUT_ERROR_NOT_SUPPORTED Not supported
  * @exception #SHORTCUT_ERROR_PERMISSION_DENIED Permission denied
- * @see shortcut_set_remove_cb
+ * @see shortcut_set_remove_cb()
  * @see get_last_result()
  */
 void shortcut_unset_remove_cb(void);
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)