Change package signature and description
[platform/core/api/package-manager.git] / include / package_manager_extension.h
index 193adf3..e811d86 100644 (file)
@@ -84,10 +84,10 @@ int package_manager_request_mount_install_with_cb(package_manager_request_h requ
  * @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[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[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
@@ -100,7 +100,7 @@ int package_manager_request_mount_install_with_cb(package_manager_request_h requ
  */
 int package_manager_request_mount_install_packages(package_manager_request_h request,
                                                const char **paths,
-                                               int n_paths,
+                                               int paths_count,
                                                int *id);
 
 /**
@@ -113,12 +113,12 @@ int package_manager_request_mount_install_packages(package_manager_request_h req
  * @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
@@ -131,7 +131,7 @@ int package_manager_request_mount_install_packages(package_manager_request_h req
  */
 int package_manager_request_mount_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);