Change package signature and description
[platform/core/api/package-manager.git] / include / package_manager.h
index f8eff57..8a55af2 100644 (file)
@@ -992,9 +992,9 @@ int package_manager_request_install_with_cb(package_manager_request_h request,
  * @privlevel platform
  * @privilege %http://tizen.org/privilege/packagemanager.admin
  * @param[in]  request The request handle
- * @param[in]  paths   The array of absolute paths to the package to be installed
- * @param[in]  n_paths The number of paths in array
- * @param[out] id      The ID of the request to the package manager
+ * @param[in]  paths       The array of absolute paths to the packages to be installed
+ * @param[in]  paths_count The number of paths in array
+ * @param[out] id          The ID of the request to the package manager
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #PACKAGE_MANAGER_ERROR_NONE              Successful
@@ -1007,7 +1007,7 @@ int package_manager_request_install_with_cb(package_manager_request_h request,
  */
 int package_manager_request_install_packages(package_manager_request_h request,
                                                const char **paths,
-                                               int n_paths,
+                                               int paths_count,
                                                int *id);
 
 /**
@@ -1020,12 +1020,12 @@ int package_manager_request_install_packages(package_manager_request_h request,
  * @since_tizen 6.0
  * @privlevel platform
  * @privilege %http://tizen.org/privilege/packagemanager.admin
- * @param[in]  request   The request handle
- * @param[in]  paths     The array of absolute paths to the package to be installed
- * @param[in]  n_paths   The number of paths in array
- * @param[in]  callback  The callback function to be invoked
- * @param[in]  user_data The user data to be passed to the callback function
- * @param[out] id        The ID of the request to the package manager
+ * @param[in]  request       The request handle
+ * @param[in]  paths         The array of absolute paths to the packages to be installed
+ * @param[in]  paths_count   The number of paths in array
+ * @param[in]  callback      The callback function to be invoked
+ * @param[in]  user_data     The user data to be passed to the callback function
+ * @param[out] id            The ID of the request to the package manager
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #PACKAGE_MANAGER_ERROR_NONE              Successful
@@ -1038,7 +1038,7 @@ int package_manager_request_install_packages(package_manager_request_h request,
  */
 int package_manager_request_install_packages_with_cb(package_manager_request_h request,
                                                const char **paths,
-                                               int n_paths,
+                                               int paths_count,
                                                package_manager_request_event_cb callback,
                                                void *user_data,
                                                int *id);